-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathPresentableTrait.php
75 lines (65 loc) · 1.31 KB
/
PresentableTrait.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
namespace Pingpong\Presenters;
use Illuminate\Container\Container;
trait PresentableTrait
{
/**
* The container instance.
*
* @var Container
*/
protected $container;
/**
* Present the presenter object.
*
* @return object
*
* @throws \InvalidArgumentException
*/
public function present()
{
if (is_null($this->presenter)) {
throw new \InvalidArgumentException('Presenter is not defined.');
}
return $this->getContainer()->make($this->presenter, array($this));
}
/**
* Set the presenter class.
*
* @param string $presenter
*
* @return $this
*/
public function setPresenter($presenter)
{
$this->presenter = $presenter;
return $this;
}
/**
* Get presenter.
*
* @return string
*/
public function getPresenter()
{
return $this->presenter;
}
/**
* Set container instance.
*
* @param Container $container
*/
public function setContainer(Container $container)
{
$this->container = $container;
}
/**
* Get container instance.
*
* @return Container
*/
public function getContainer()
{
return $this->container ?: new Container();
}
}