|
@@ -31,23 +31,19 @@ class Pool
|
|
|
|
|
|
protected $titleLogo;
|
|
|
|
|
|
- protected $titleMode;
|
|
|
-
|
|
|
protected $options;
|
|
|
|
|
|
/**
|
|
|
* @param ContainerInterface $container
|
|
|
* @param string $title
|
|
|
* @param string $logoTitle
|
|
|
- * @param string $titleMode
|
|
|
* @param array $options
|
|
|
*/
|
|
|
- public function __construct(ContainerInterface $container, $title, $logoTitle, $titleMode = "both", $options = array())
|
|
|
+ public function __construct(ContainerInterface $container, $title, $logoTitle, $options = array())
|
|
|
{
|
|
|
$this->container = $container;
|
|
|
$this->title = $title;
|
|
|
$this->titleLogo = $logoTitle;
|
|
|
- $this->titleMode = $titleMode;
|
|
|
$this->options = $options;
|
|
|
}
|
|
|
|
|
@@ -311,14 +307,6 @@ class Pool
|
|
|
return $this->title;
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * @return string
|
|
|
- */
|
|
|
- public function getTitleMode()
|
|
|
- {
|
|
|
- return $this->titleMode;
|
|
|
- }
|
|
|
-
|
|
|
/**
|
|
|
* @param string $name
|
|
|
* @param mixed $default
|