@@ -78,7 +78,7 @@ |
||
78 | 78 | |
79 | 79 | // ensures garbage removal |
80 | 80 | register_shutdown_function( |
81 | - function ($filename) { |
|
81 | + function($filename) { |
|
82 | 82 | @unlink($filename); |
83 | 83 | }, |
84 | 84 | $tmp |
@@ -84,7 +84,7 @@ |
||
84 | 84 | { |
85 | 85 | /* @var $serviceLocator \Zend\Form\FormElementManager */ |
86 | 86 | $service = $serviceLocator->getServiceLocator(); |
87 | - $options=null; |
|
87 | + $options = null; |
|
88 | 88 | if ($this->options) { |
89 | 89 | $options = $service->get($this->options); |
90 | 90 | } |
@@ -49,7 +49,7 @@ |
||
49 | 49 | $properties = $refl->getProperties(); |
50 | 50 | |
51 | 51 | foreach ($properties as $property) { |
52 | - $name = $property->getName(); |
|
52 | + $name = $property->getName(); |
|
53 | 53 | if ('_' == $name{0}) { |
54 | 54 | continue; |
55 | 55 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | if (!$elementId) { |
70 | 70 | $elementId = preg_replace( |
71 | 71 | array('~[^A-Za-z0-9_-]~', '~--+~', '~^-|-$~'), |
72 | - array('-' , '-' , '' ), |
|
72 | + array('-', '-', ''), |
|
73 | 73 | $element->getName() |
74 | 74 | ); |
75 | 75 | $element->setAttribute('id', $elementId); |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | if (!$elementOrFieldsetId) { |
100 | 100 | $elementOrFieldsetId = preg_replace( |
101 | 101 | array('~[^A-Za-z0-9_-]~', '~--+~', '~^-|-$~'), |
102 | - array('-' , '-' , '' ), |
|
102 | + array('-', '-', ''), |
|
103 | 103 | $elementOrFieldset->getName() |
104 | 104 | ); |
105 | 105 | $elementOrFieldset->setAttribute('id', $elementOrFieldsetId); |
@@ -94,7 +94,7 @@ |
||
94 | 94 | |
95 | 95 | $view = $e->getApplication()->getServiceManager()->get('ViewManager')->getView(); |
96 | 96 | $view->addRenderingStrategy(array($strategy, 'selectRenderer'), 10); |
97 | - $view->addResponseStrategy(array($strategy, 'injectResponse'), 10); |
|
97 | + $view->addResponseStrategy(array($strategy, 'injectResponse'), 10); |
|
98 | 98 | |
99 | 99 | } |
100 | 100 | } |
@@ -42,12 +42,12 @@ |
||
42 | 42 | |
43 | 43 | public function attachShared(SharedEventManagerInterface $events) |
44 | 44 | { |
45 | - $events->attach('*', NotificationEvent::EVENT_NOTIFICATION_ADD, array($this,'add'), 1); |
|
46 | - $events->attach('Zend\Mvc\Application', MvcEvent::EVENT_DISPATCH, array($this,'renderJSON'), -240); |
|
47 | - $events->attach('Zend\Mvc\Application', MvcEvent::EVENT_DISPATCH, array($this,'renderHTML'), -250); |
|
45 | + $events->attach('*', NotificationEvent::EVENT_NOTIFICATION_ADD, array($this, 'add'), 1); |
|
46 | + $events->attach('Zend\Mvc\Application', MvcEvent::EVENT_DISPATCH, array($this, 'renderJSON'), -240); |
|
47 | + $events->attach('Zend\Mvc\Application', MvcEvent::EVENT_DISPATCH, array($this, 'renderHTML'), -250); |
|
48 | 48 | // Sometimes the Dispatch-Event is not reached, for instance with a route-direct |
49 | 49 | // but also for Events, that are happening after the Dispatch |
50 | - $events->attach('Zend\Mvc\Application', MvcEvent::EVENT_FINISH, array($this,'renderHTML'), -250); |
|
50 | + $events->attach('Zend\Mvc\Application', MvcEvent::EVENT_FINISH, array($this, 'renderHTML'), -250); |
|
51 | 51 | return $this; |
52 | 52 | } |
53 | 53 |
@@ -58,7 +58,7 @@ |
||
58 | 58 | } |
59 | 59 | |
60 | 60 | |
61 | - $dm = $eventArgs->getDocumentManager(); |
|
61 | + $dm = $eventArgs->getDocumentManager(); |
|
62 | 62 | $uow = $dm->getUnitOfWork(); |
63 | 63 | $changeset = $uow->getDocumentChangeset($document); |
64 | 64 | $filter = $this->getKeywordsFilter(); |
@@ -42,8 +42,8 @@ |
||
42 | 42 | $document->preUpdate($prePersist); |
43 | 43 | |
44 | 44 | if (!$prePersist) { |
45 | - $dm = $eventArgs->getDocumentManager(); |
|
46 | - $uow = $dm->getUnitOfWork(); |
|
45 | + $dm = $eventArgs->getDocumentManager(); |
|
46 | + $uow = $dm->getUnitOfWork(); |
|
47 | 47 | $uow->recomputeSingleDocumentChangeSet($dm->getClassMetadata(get_class($document)), $document); |
48 | 48 | } |
49 | 49 |
@@ -89,11 +89,11 @@ discard block |
||
89 | 89 | $config = $this->serviceManager->get('Config'); |
90 | 90 | $appConfig = $this->serviceManager->get('ApplicationConfig'); |
91 | 91 | foreach ($appConfig['modules'] as $module) { |
92 | - $this->config[$module] = array_key_exists($module, $config)?$config[$module]:array(); |
|
92 | + $this->config[$module] = array_key_exists($module, $config) ? $config[$module] : array(); |
|
93 | 93 | } |
94 | 94 | } |
95 | 95 | if (isset($namespace)) { |
96 | - return array_key_exists($namespace, $this->config)?$this->config[$namespace]: array(); |
|
96 | + return array_key_exists($namespace, $this->config) ? $this->config[$namespace] : array(); |
|
97 | 97 | } |
98 | 98 | return $this->config; |
99 | 99 | } |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | } |
107 | 107 | if (!empty($this->map[$key])) { |
108 | 108 | $module = $this->getNamespace(); |
109 | - return isset($this->map[$key][$module])?$this->map[$key][$module]:array(); |
|
109 | + return isset($this->map[$key][$module]) ? $this->map[$key][$module] : array(); |
|
110 | 110 | } |
111 | 111 | return array(); |
112 | 112 | } |