コード例 #1
0
 /**
  * Default constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->itemType = 'AppserverIo\\Doppelgaenger\\Entities\\Definitions\\FunctionDefinition';
     $this->defaultOffset = 'name';
 }
コード例 #2
0
 /**
  * Default constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->itemType = 'AppserverIo\\Doppelgaenger\\Interfaces\\AssertionInterface';
 }
コード例 #3
0
 /**
  * Default constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->itemType = 'AppserverIo\\Doppelgaenger\\Entities\\Advice';
 }
コード例 #4
0
 /**
  * Default constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->itemType = 'AppserverIo\\Doppelgaenger\\Entities\\Definitions\\ParameterDefinition';
 }
コード例 #5
0
 /**
  * Default constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->itemType = 'AppserverIo\\Doppelgaenger\\Entities\\PointcutExpression';
 }
コード例 #6
0
 /**
  * Default constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->itemType = 'AppserverIo\\Doppelgaenger\\Interfaces\\StructureDefinitionInterface';
     $this->defaultOffset = 'name';
 }
コード例 #7
0
 /**
  * Default constructor
  *
  * @param string $itemType      Qualified name of the type the expected entries will have
  * @param string $defaultOffset The name of the added entry's property whose value will be used as offset
  */
 public function __construct($itemType, $defaultOffset = '')
 {
     parent::__construct();
     $this->itemType = $itemType;
     $this->defaultOffset = $defaultOffset;
 }
コード例 #8
0
ファイル: TypedStack.php プロジェクト: gotnospirit/php-dpat
 public function __construct($type, IStack &$stack)
 {
     parent::__construct($type, $stack);
 }
コード例 #9
0
ファイル: TypedQueue.php プロジェクト: gotnospirit/php-dpat
 public function __construct($type, IQueue &$queue)
 {
     parent::__construct($type, $queue);
 }