Exemplo n.º 1
0
 public function __construct(Page $page, $oldTitle, $newTitle)
 {
     parent::__construct($page);
     $this->oldTitle = $oldTitle;
     $this->newTitle = $newTitle;
 }
Exemplo n.º 2
0
 public function __construct(Page $page, Person $person)
 {
     parent::__construct($page);
     $this->person = $person;
 }
Exemplo n.º 3
0
 public function __construct(Page $page, Chunk $chunk)
 {
     parent::__construct($page);
     $this->chunk = $chunk;
 }
 public function __construct(Page $page, Template $newTemplate)
 {
     parent::__construct($page);
     $this->newTemplate = $newTemplate;
 }