コード例 #1
0
ファイル: StringBinding.php プロジェクト: webmozart/discovery
 protected function postUnserialize(array &$data)
 {
     $this->string = array_pop($data);
     parent::postUnserialize($data);
 }
コード例 #2
0
ファイル: ClassBinding.php プロジェクト: Nyholm/discovery-1
 /**
  * {@inheritdoc}
  */
 protected function postUnserialize(array &$data)
 {
     $this->className = array_pop($data);
     parent::postUnserialize($data);
 }
コード例 #3
0
ファイル: ResourceBinding.php プロジェクト: puli/repository
 /**
  * {@inheritdoc}
  */
 protected function postUnserialize(array &$data)
 {
     $this->language = array_pop($data);
     $this->query = array_pop($data);
     parent::postUnserialize($data);
 }