__construct() публичный Метод

Public constructor. Determines the priority of this class and if it should be enabled
public __construct ( Container $container )
$container FOF30\Container\Container
Пример #1
0
 /**
  * Public constructor. Determines the priority of this class and if it should be enabled
  */
 public function __construct(Container $container)
 {
     $this->priority = 60;
     $this->enabled = class_exists('\\AkeebaStrapper30');
     parent::__construct($container);
 }