Example #1
0
 public function __construct()
 {
     parent::__construct();
     $this->script = array();
     $this->style = array();
     $this->title = 'Sem título';
 }
Example #2
0
 /**
  * @param ExpressionInterface|array $part
  */
 public function __construct($part)
 {
     $parentArgs = array();
     if ($part instanceof ExpressionInterface) {
         $parentArgs[] = $part;
     } elseif (is_array($part)) {
         $parentArgs = $part;
     }
     parent::__construct($parentArgs);
 }
Example #3
0
 public function __construct(array $specifications = [])
 {
     parent::__construct('AND', $specifications);
 }
 /**
  * @param string $ID
  * @param string $name
  */
 public function __construct($ID, $name)
 {
     $this->ID = $ID;
     $this->name = $name;
     parent::__construct();
 }