@@ -26,7 +26,7 @@ |
||
26 | 26 | public function setImage($file) |
27 | 27 | { |
28 | 28 | if (!file_exists($file)) { |
29 | - throw new \Exception('Not a file: "' . $file . '"', null, null); |
|
29 | + throw new \Exception('Not a file: "'.$file.'"', null, null); |
|
30 | 30 | } |
31 | 31 | $this->file = $file; |
32 | 32 | $this->image = imagecreatefromstring( |
@@ -8,9 +8,9 @@ |
||
8 | 8 | class RecaptchaFactory implements FactoryInterface |
9 | 9 | { |
10 | 10 | /** |
11 | - * @param ServiceLocatorInterface $locator |
|
12 | - * @return \PlaygroundCore\Service\Recaptcha |
|
13 | - */ |
|
11 | + * @param ServiceLocatorInterface $locator |
|
12 | + * @return \PlaygroundCore\Service\Recaptcha |
|
13 | + */ |
|
14 | 14 | public function createService(ServiceLocatorInterface $locator) |
15 | 15 | { |
16 | 16 | $service = new Recaptcha($locator); |
@@ -8,9 +8,9 @@ |
||
8 | 8 | class LocaleFactory implements FactoryInterface |
9 | 9 | { |
10 | 10 | /** |
11 | - * @param ServiceLocatorInterface $locator |
|
12 | - * @return \PlaygroundCore\Service\Locale |
|
13 | - */ |
|
11 | + * @param ServiceLocatorInterface $locator |
|
12 | + * @return \PlaygroundCore\Service\Locale |
|
13 | + */ |
|
14 | 14 | public function createService(ServiceLocatorInterface $locator) |
15 | 15 | { |
16 | 16 | $service = new Locale($locator); |
@@ -8,9 +8,9 @@ |
||
8 | 8 | class AdminElfinderControllerFactory implements FactoryInterface |
9 | 9 | { |
10 | 10 | /** |
11 | - * @param ServiceLocatorInterface $locator |
|
12 | - * @return \PlaygroundCore\Controller\Admin\ElfinderController |
|
13 | - */ |
|
11 | + * @param ServiceLocatorInterface $locator |
|
12 | + * @return \PlaygroundCore\Controller\Admin\ElfinderController |
|
13 | + */ |
|
14 | 14 | public function createService(ServiceLocatorInterface $locator) |
15 | 15 | { |
16 | 16 | $controller = new ElfinderController($locator); |
@@ -8,9 +8,9 @@ |
||
8 | 8 | class ConsoleControllerFactory implements FactoryInterface |
9 | 9 | { |
10 | 10 | /** |
11 | - * @param ServiceLocatorInterface $locator |
|
12 | - * @return \PlaygroundCore\Controller\ConsoleController |
|
13 | - */ |
|
11 | + * @param ServiceLocatorInterface $locator |
|
12 | + * @return \PlaygroundCore\Controller\ConsoleController |
|
13 | + */ |
|
14 | 14 | public function createService(ServiceLocatorInterface $locator) |
15 | 15 | { |
16 | 16 | $controller = new ConsoleController($locator); |
@@ -8,9 +8,9 @@ |
||
8 | 8 | class AdminWebsiteControllerFactory implements FactoryInterface |
9 | 9 | { |
10 | 10 | /** |
11 | - * @param ServiceLocatorInterface $locator |
|
12 | - * @return \PlaygroundCore\Controller\Admin\WebsiteController |
|
13 | - */ |
|
11 | + * @param ServiceLocatorInterface $locator |
|
12 | + * @return \PlaygroundCore\Controller\Admin\WebsiteController |
|
13 | + */ |
|
14 | 14 | public function createService(ServiceLocatorInterface $locator) |
15 | 15 | { |
16 | 16 | $controller = new WebsiteController($locator); |
@@ -8,9 +8,9 @@ |
||
8 | 8 | class FfmpegFactory implements FactoryInterface |
9 | 9 | { |
10 | 10 | /** |
11 | - * @param ServiceLocatorInterface $locator |
|
12 | - * @return \PlaygroundCore\Service\Ffmpeg |
|
13 | - */ |
|
11 | + * @param ServiceLocatorInterface $locator |
|
12 | + * @return \PlaygroundCore\Service\Ffmpeg |
|
13 | + */ |
|
14 | 14 | public function createService(ServiceLocatorInterface $locator) |
15 | 15 | { |
16 | 16 | $service = new Ffmpeg($locator); |
@@ -8,9 +8,9 @@ |
||
8 | 8 | class WebsiteFactory implements FactoryInterface |
9 | 9 | { |
10 | 10 | /** |
11 | - * @param ServiceLocatorInterface $locator |
|
12 | - * @return \PlaygroundCore\Service\Website |
|
13 | - */ |
|
11 | + * @param ServiceLocatorInterface $locator |
|
12 | + * @return \PlaygroundCore\Service\Website |
|
13 | + */ |
|
14 | 14 | public function createService(ServiceLocatorInterface $locator) |
15 | 15 | { |
16 | 16 | $service = new Website($locator); |
@@ -8,9 +8,9 @@ |
||
8 | 8 | class CountryFactory implements FactoryInterface |
9 | 9 | { |
10 | 10 | /** |
11 | - * @param ServiceLocatorInterface $locator |
|
12 | - * @return \PlaygroundCore\Service\Country |
|
13 | - */ |
|
11 | + * @param ServiceLocatorInterface $locator |
|
12 | + * @return \PlaygroundCore\Service\Country |
|
13 | + */ |
|
14 | 14 | public function createService(ServiceLocatorInterface $locator) |
15 | 15 | { |
16 | 16 | $service = new Country($locator); |