Completed
Push — develop ( fd8298...e653e2 )
by Carsten
14s
created
module/Jobs/src/Jobs/Factory/View/Helper/JobUrlFactory.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,8 +45,8 @@
 block discarded – undo
45 45
         $params    = $container->get('params');
46 46
         $serverUrl = $container->get('serverUrl');
47 47
         $helper->setUrlHelper($url)
48
-               ->setParamsHelper($params)
49
-               ->setServerUrlHelper($serverUrl);
48
+                ->setParamsHelper($params)
49
+                ->setServerUrlHelper($serverUrl);
50 50
         return $helper;
51 51
     }
52 52
 
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Factory/Options/ChannelOptionsFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
         $core = $container->get("Core/Options");
39 39
 
40 40
         if ('' == $channel->getCurrency()) {
41
-            $currency=$core->getDefaultCurrencyCode();
41
+            $currency = $core->getDefaultCurrencyCode();
42 42
             $channel->setCurrency($currency);
43 43
         }
44 44
 
Please login to merge, or discard this patch.
module/Jobs/src/Jobs/Factory/ModuleOptionsFactory.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 
44 44
         $jobs_options = isset($config['jobs_options']) ? $config['jobs_options'] : array();
45 45
 
46
-        if (!array_key_exists('multipostingApprovalMail', $jobs_options) || '' ==  trim($jobs_options['multipostingApprovalMail'])) {
46
+        if (!array_key_exists('multipostingApprovalMail', $jobs_options) || '' == trim($jobs_options['multipostingApprovalMail'])) {
47 47
             $coreOptions = $container->get('Core/Options');
48 48
             $jobs_options['multipostingApprovalMail'] = $coreOptions->getSystemMessageEmail();
49 49
         }
Please login to merge, or discard this patch.
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,6 @@
 block discarded – undo
55 55
     /**
56 56
      * {@inheritDoc}
57 57
      *
58
-     * @param ServiceLocatorInterface $serviceLocator
59 58
      * @return ModuleOptions
60 59
      */
61 60
     public function createService(ServiceLocatorInterface $services)
Please login to merge, or discard this patch.
module/Core/src/Core/Form/View/Helper/FormCollection.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
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
 
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
                 if (!$elementOrFieldsetId) {
105 105
                     $elementOrFieldsetId = preg_replace(
106 106
                         array('~[^A-Za-z0-9_-]~', '~--+~', '~^-|-$~'),
107
-                        array('-'              , '-'    , ''       ),
107
+                        array('-', '-', ''),
108 108
                         $elementOrFieldset->getName()
109 109
                     );
110 110
 
Please login to merge, or discard this patch.
module/Auth/src/Acl/Factory/View/Helper/AclFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      * @param  string             $requestedName
28 28
      * @param  null|array         $options
29 29
      *
30
-     * @return object
30
+     * @return Acl
31 31
      * @throws ServiceNotFoundException if unable to resolve the service.
32 32
      * @throws ServiceNotCreatedException if an exception is raised when
33 33
      *     creating a service.
Please login to merge, or discard this patch.
module/Auth/src/Acl/Listener/CheckPermissionsListenerFactory.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      * @param  string             $requestedName
26 26
      * @param  null|array         $options
27 27
      *
28
-     * @return object
28
+     * @return CheckPermissionsListener
29 29
      * @throws ServiceNotFoundException if unable to resolve the service.
30 30
      * @throws ServiceNotCreatedException if an exception is raised when
31 31
      *     creating a service.
@@ -47,7 +47,6 @@  discard block
 block discarded – undo
47 47
      *
48 48
      * - Injects the AuthenticationService
49 49
      *
50
-     * @param ServiceLocatorInterface $helpers
51 50
      * @return \Auth\View\Helper\Auth
52 51
      * @see \Zend\ServiceManager\FactoryInterface::createService()
53 52
      */
Please login to merge, or discard this patch.
module/Auth/src/Auth/Factory/Form/SocialProfilesFieldsetFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
      * @param  string             $requestedName
36 36
      * @param  null|array         $options
37 37
      *
38
-     * @return object
38
+     * @return SocialProfilesFieldset
39 39
      * @throws ServiceNotFoundException if unable to resolve the service.
40 40
      * @throws ServiceNotCreatedException if an exception is raised when
41 41
      *     creating a service.
Please login to merge, or discard this patch.
module/Cv/src/Cv/Factory/Form/LanguageSkillCollectionFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      * @param  string             $requestedName
16 16
      * @param  null|array         $options
17 17
      *
18
-     * @return CollectionContainer
18
+     * @return \Core\Form\CollectionContainer
19 19
      * @throws ServiceNotFoundException if unable to resolve the service.
20 20
      * @throws ServiceNotCreatedException if an exception is raised when
21 21
      *     creating a service.
Please login to merge, or discard this patch.
module/Cv/src/Cv/Factory/Form/PreferredJobFieldsetFactory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      * @param  string             $requestedName
25 25
      * @param  null|array         $options
26 26
      *
27
-     * @return CollectionContainer
27
+     * @return PreferredJobFieldset
28 28
      * @throws ServiceNotFoundException if unable to resolve the service.
29 29
      * @throws ServiceNotCreatedException if an exception is raised when
30 30
      *     creating a service.
Please login to merge, or discard this patch.