Completed
Pull Request — master (#166)
by Abdul Malik
03:13 queued 11s
created
module/Application/Module.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
         if (!$e->getViewModel()->terminate()) {
112 112
             $entityManager = $this->services->get('Doctrine\ORM\EntityManager');
113 113
             $e->getViewModel()
114
-              ->setVariable('modules_list', $entityManager->getRepository('Application\Entity\ModuleList')->findBy([], ['id' => 'DESC']));
114
+                ->setVariable('modules_list', $entityManager->getRepository('Application\Entity\ModuleList')->findBy([], ['id' => 'DESC']));
115 115
         }
116 116
     }
117 117
 
Please login to merge, or discard this patch.
src/Application/Factory/Controller/DownloadControllerFactory.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,8 +33,8 @@
 block discarded – undo
33 33
         $services = $serviceLocator->getServiceLocator();
34 34
         $moduleList = [];
35 35
         foreach ($services->get('Doctrine\ORM\EntityManager')
36
-                               ->getRepository('Application\Entity\ModuleList')
37
-                               ->findAll() as $module) {
36
+                                ->getRepository('Application\Entity\ModuleList')
37
+                                ->findAll() as $module) {
38 38
             $moduleList[] = $module->getModuleName();
39 39
         }
40 40
 
Please login to merge, or discard this patch.
LearnZF2Captcha/src/LearnZF2Captcha/Factory/Form/CaptchaFormFactory.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -38,9 +38,9 @@
 block discarded – undo
38 38
         $services = $serviceLocator->getServiceLocator();
39 39
         $config = $services->get('Config');
40 40
         $captchaAdapterKey = $services->get('Application')
41
-                                      ->getMvcEvent()
42
-                                      ->getRequest()
43
-                                      ->getQuery('captcha_adapter', 0);
41
+                                        ->getMvcEvent()
42
+                                        ->getRequest()
43
+                                        ->getQuery('captcha_adapter', 0);
44 44
 
45 45
         $form = new CaptchaForm($config['learnzf2_captcha_config'], $captchaAdapterKey);
46 46
 
Please login to merge, or discard this patch.
LearnZF2Pagination/src/LearnZF2Pagination/Controller/IndexController.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         // Paginate filtered data
29 29
         $paginator = new Paginator(new ArrayAdapter($data));
30 30
         $paginator->setCurrentPageNumber($page)
31
-                  ->setItemCountPerPage(self::ITEM_PER_PAGE);
31
+                    ->setItemCountPerPage(self::ITEM_PER_PAGE);
32 32
 
33 33
         return new ViewModel(array_merge($this->params()->fromQuery(), ['paginator' => $paginator]));
34 34
     }
Please login to merge, or discard this patch.
module/LearnZF2Themes/config/module.config.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
             'reloadService' => 'LearnZF2Themes\Service\ReloadService',
46 46
         ],
47 47
     ],
48
-   'theme' => [
48
+    'theme' => [
49 49
         'name' => 'default',
50 50
     ],
51 51
 ];
Please login to merge, or discard this patch.
init_autoloader.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Zend Framework (http://framework.zend.com/)
4
- *
5
- * @link      http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
6
- * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
7
- * @license   http://framework.zend.com/license/new-bsd New BSD License
8
- */
3
+     * Zend Framework (http://framework.zend.com/)
4
+     *
5
+     * @link      http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
6
+     * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
7
+     * @license   http://framework.zend.com/license/new-bsd New BSD License
8
+     */
9 9
 
10 10
 /**
11 11
  * This autoloading setup is really more complicated than it needs to be for most
Please login to merge, or discard this patch.
config/application.config.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Configuration file generated by ZFTool
4
- * The previous configuration file is stored in application.config.old
5
- *
6
- * @see https://github.com/zendframework/ZFTool
7
- */
3
+     * Configuration file generated by ZFTool
4
+     * The previous configuration file is stored in application.config.old
5
+     *
6
+     * @see https://github.com/zendframework/ZFTool
7
+     */
8 8
 return [
9 9
     'modules' => [
10 10
         'Application',
Please login to merge, or discard this patch.