@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | */ |
39 | 39 | protected $serviceLocator; |
40 | 40 | |
41 | - public function __invoke( ContainerInterface $container, $requestedName, array $options = null ) |
|
41 | + public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
|
42 | 42 | { |
43 | 43 | $this->serviceLocator = $container; |
44 | 44 | $service = new RestClient($this->getUri(), $this->getConfig()); |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | */ |
55 | 55 | public function createService(ServiceLocatorInterface $serviceLocator) |
56 | 56 | { |
57 | - return $this($serviceLocator,RestClient::class); |
|
57 | + return $this($serviceLocator, RestClient::class); |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | /** |
@@ -39,25 +39,25 @@ |
||
39 | 39 | * @throws ContainerException if any other error occurs |
40 | 40 | */ |
41 | 41 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) { |
42 | - $basePath = $container->get( 'ViewHelperManager' )->get( 'basepath' ); |
|
43 | - $config = $container->get( 'Config' ); |
|
42 | + $basePath = $container->get('ViewHelperManager')->get('basepath'); |
|
43 | + $config = $container->get('Config'); |
|
44 | 44 | |
45 | 45 | /* @var \Zend\Mvc\MvcEvent $event */ |
46 | - $event = $container->get( 'application' )->getMvcEvent(); |
|
46 | + $event = $container->get('application')->getMvcEvent(); |
|
47 | 47 | |
48 | - $lang = $event->getRouteMatch()->getParam( 'lang' ); |
|
48 | + $lang = $event->getRouteMatch()->getParam('lang'); |
|
49 | 49 | |
50 | 50 | $helper = new FormEditorLight(); |
51 | - if ( isset( $config['view_helper_config']['form_editor']['light'] ) && is_array( $config['view_helper_config']['form_editor']['light'] ) ) { |
|
52 | - $helper->setOptions( $config['view_helper_config']['form_editor']['light'] ); |
|
51 | + if (isset($config['view_helper_config']['form_editor']['light']) && is_array($config['view_helper_config']['form_editor']['light'])) { |
|
52 | + $helper->setOptions($config['view_helper_config']['form_editor']['light']); |
|
53 | 53 | } |
54 | 54 | |
55 | - $helper->setOption( 'theme', 'modern' ); |
|
56 | - $helper->setOption( 'selector', 'div.tinymce_light' ); |
|
55 | + $helper->setOption('theme', 'modern'); |
|
56 | + $helper->setOption('selector', 'div.tinymce_light'); |
|
57 | 57 | |
58 | - if ( in_array( $lang, [ 'de', 'fr', 'it', 'es', 'hi', 'ar', 'ru', 'zh', 'tr' ] ) ) { |
|
59 | - $helper->setOption( 'language', $lang ); |
|
60 | - $helper->setOption( 'language_url', $basePath( '/js/tinymce-lang/' ) . $lang . '.js' ); |
|
58 | + if (in_array($lang, ['de', 'fr', 'it', 'es', 'hi', 'ar', 'ru', 'zh', 'tr'])) { |
|
59 | + $helper->setOption('language', $lang); |
|
60 | + $helper->setOption('language_url', $basePath('/js/tinymce-lang/').$lang.'.js'); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | return $helper; |
@@ -14,7 +14,7 @@ |
||
14 | 14 | |
15 | 15 | class PdfServiceFactory implements FactoryInterface |
16 | 16 | { |
17 | - public function __invoke( ContainerInterface $container, $requestedName, array $options = null ) |
|
17 | + public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
|
18 | 18 | { |
19 | 19 | $Html2PdfConverter = $container->get('Html2PdfConverter'); |
20 | 20 | if (!$Html2PdfConverter instanceof PdfInterface) { |
@@ -25,12 +25,12 @@ |
||
25 | 25 | */ |
26 | 26 | class PaginatorServiceFactory implements FactoryInterface |
27 | 27 | { |
28 | - public function __invoke( ContainerInterface $container, $requestedName, array $options = null ) |
|
28 | + public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
|
29 | 29 | { |
30 | 30 | $configArray = $container->get('Config'); |
31 | 31 | $configArray = isset($configArray['paginator_manager']) ? $configArray['paginator_manager'] : array(); |
32 | 32 | $config = new PaginatorServiceConfig($configArray); |
33 | - $service = new PaginatorService($container,$config->toArray()); |
|
33 | + $service = new PaginatorService($container, $config->toArray()); |
|
34 | 34 | |
35 | 35 | return $service; |
36 | 36 | } |
@@ -26,7 +26,7 @@ |
||
26 | 26 | abstract class PaginatorFactoryAbstract implements FactoryInterface |
27 | 27 | { |
28 | 28 | |
29 | - public function __invoke( ContainerInterface $container, $requestedName, array $options = null ) |
|
29 | + public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
|
30 | 30 | { |
31 | 31 | /* @var PaginatorService $paginatorService */ |
32 | 32 | /* @var RepositoryService $repositories */ |
@@ -39,7 +39,7 @@ |
||
39 | 39 | array $configuration = array() |
40 | 40 | ) |
41 | 41 | { |
42 | - parent::__construct($container,$configuration); |
|
42 | + parent::__construct($container, $configuration); |
|
43 | 43 | $this->container = $container; |
44 | 44 | } |
45 | 45 |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | /** @var Logger $logger */ |
37 | 37 | $logger = Debugger::getLogger(); |
38 | 38 | $logger->emailSnooze = $config['email_snooze']; |
39 | - $logger->mailer = function ($message, $email) use ($logger) |
|
39 | + $logger->mailer = function($message, $email) use ($logger) |
|
40 | 40 | { |
41 | 41 | $exceptionFile = null; |
42 | 42 | |
@@ -45,9 +45,9 @@ discard block |
||
45 | 45 | $tmp = []; |
46 | 46 | while ($message) { |
47 | 47 | $tmp[] = ($message instanceof \ErrorException |
48 | - ? Helpers::errorTypeToString($message->getSeverity()) . ': ' . $message->getMessage() |
|
49 | - : Helpers::getClass($message) . ': ' . $message->getMessage() . ($message->getCode() ? ' #' . $message->getCode() : '') |
|
50 | - ) . ' in ' . $message->getFile() . ':' . $message->getLine(); |
|
48 | + ? Helpers::errorTypeToString($message->getSeverity()).': '.$message->getMessage() |
|
49 | + : Helpers::getClass($message).': '.$message->getMessage().($message->getCode() ? ' #'.$message->getCode() : '') |
|
50 | + ).' in '.$message->getFile().':'.$message->getLine(); |
|
51 | 51 | $message = $message->getPrevious(); |
52 | 52 | } |
53 | 53 | $message = implode("\ncaused by ", $tmp); |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | $host = preg_replace('#[^\w.-]+#', '', isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : php_uname('n')); |
65 | 65 | $mimeMessage = new Mime\Message(); |
66 | 66 | |
67 | - $text = new Mime\Part($message . "\n\nsource: " . Helpers::getSource()); |
|
67 | + $text = new Mime\Part($message."\n\nsource: ".Helpers::getSource()); |
|
68 | 68 | $text->type = Mime\Mime::TYPE_TEXT; |
69 | 69 | $text->charset = 'utf-8'; |
70 | 70 | $mimeMessage->addPart($text); |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | { |
51 | 51 | use ZfListenerAggregateTrait; |
52 | 52 | |
53 | - public function attach(EventManagerInterface $events, $priority=1) |
|
53 | + public function attach(EventManagerInterface $events, $priority = 1) |
|
54 | 54 | { |
55 | 55 | return $this->attachEvents($events); |
56 | 56 | } |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | $method = $spec[1]; |
90 | 90 | $priority = isset($spec[2]) ? $spec[2] : 0; |
91 | 91 | |
92 | - $this->listeners[] = $events->attach($event, [ $this, $method ], $priority); |
|
92 | + $this->listeners[] = $events->attach($event, [$this, $method], $priority); |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | return $this; |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | /* @var CreatePaginatorEvent $event */ |
108 | 108 | $events = $this->serviceManager->get('Core/CreatePaginator/Events'); |
109 | 109 | |
110 | - $event = $events->getEvent(CreatePaginatorEvent::EVENT_CREATE_PAGINATOR,$this,[ |
|
110 | + $event = $events->getEvent(CreatePaginatorEvent::EVENT_CREATE_PAGINATOR, $this, [ |
|
111 | 111 | 'paginatorParams' => $params, |
112 | 112 | 'paginators' => $paginators, |
113 | 113 | 'paginatorName' => $paginatorName |
@@ -116,9 +116,9 @@ discard block |
||
116 | 116 | |
117 | 117 | $paginator = $event->getPaginator(); |
118 | 118 | |
119 | - if(!$paginator instanceof Paginator){ |
|
119 | + if (!$paginator instanceof Paginator) { |
|
120 | 120 | // no paginator created by listener, so let's create default paginator |
121 | - $paginator = $paginators->get($paginatorName,$params); |
|
121 | + $paginator = $paginators->get($paginatorName, $params); |
|
122 | 122 | } |
123 | 123 | $paginator->setCurrentPageNumber(isset($params['page']) ? $params['page'] : 1) |
124 | 124 | ->setItemCountPerPage(isset($params['count']) ? $params['count'] : 10) |