| Total Complexity | 5 |
| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | abstract class AbstractProfileActionBuilder extends CompositeActionBuilder |
||
| 19 | { |
||
| 20 | /** @var BuildContainerInterface */ |
||
| 21 | protected $buildContainer; |
||
| 22 | |||
| 23 | /** @var bool */ |
||
| 24 | private $initialized = false; |
||
| 25 | |||
| 26 | public function __construct(BuildContainerInterface $buildContainer) |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @return void |
||
| 33 | */ |
||
| 34 | public function init() |
||
| 43 | } |
||
| 44 | |||
| 45 | /** |
||
| 46 | * @return void |
||
| 47 | */ |
||
| 48 | abstract protected function doInitialize(); |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @return \LightSaml\Action\ActionInterface |
||
| 52 | */ |
||
| 53 | public function build() |
||
| 62 |