コード例 #1
0
 protected function getPropertyLabel($id)
 {
     $msgkey = $this->lookupWithIndexForId('msgkey', $id);
     if ($msgkey) {
         return $this->messageCache->get($msgkey);
     }
     return false;
 }
コード例 #2
0
 public function testGetTextOnContentLanguage()
 {
     $instance = MessageCache::ByContentLanguage();
     $this->assertInternalType('string', $instance->get('exif-software'));
     MessageCache::clear();
 }