Robbo\Presenter\Presenter::__construct PHP Method

__construct() public method

Create the Presenter and store the object we are presenting.
public __construct ( mixed $object )
$object mixed
    public function __construct($object)
    {
        $this->object = $object;
    }

Usage Example

Example #1
0
 public function __construct($object, $converter)
 {
     parent::__construct($object);
     $this->converter = $converter;
 }
All Usage Examples Of Robbo\Presenter\Presenter::__construct