コード例 #1
0
ファイル: Method.php プロジェクト: Hlavos/obo
 /**
  * @param \obo\Carriers\EntityInformationCarrier $entityInformation
  * @param string $methodName
  */
 public function __construct(\obo\Carriers\EntityInformationCarrier $entityInformation, $methodName)
 {
     parent::__construct($entityInformation);
     $this->methodName = $methodName;
 }
コード例 #2
0
ファイル: Property.php プロジェクト: Hlavos/obo
 public function __construct(\obo\Carriers\PropertyInformationCarrier $propertyInformation, \obo\Carriers\EntityInformationCarrier $entityInformation)
 {
     parent::__construct($entityInformation);
     $this->propertyInformation = $propertyInformation;
 }