Test Failed
Branch master (6c9066)
by Björn
01:44
created
module/UIComponents/src/UIComponents/Template/Template.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -27,12 +27,12 @@
 block discarded – undo
27 27
      * 
28 28
      * @param array $tags
29 29
      * @param \Zend\I18n\Translator\TranslatorInterface $translator
30
-	 * @return \UIComponents\Template\TemplateAbstract
30
+     * @return \UIComponents\Template\TemplateAbstract
31 31
      */
32 32
     public function __construct ($tags = false, $translator = null)
33
-	{
34
-		return parent::__construct($tags, $translator);
35
-	} 
33
+    {
34
+        return parent::__construct($tags, $translator);
35
+    } 
36 36
 	
37 37
 } 
38 38
 ?>
39 39
\ No newline at end of file
Please login to merge, or discard this patch.
module/UIComponents/src/UIComponents/Template/TemplateAbstract.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
  */
25 25
 abstract class TemplateAbstract implements TemplateInterface, TranslatorAwareInterface
26 26
 {
27
-	use TranslatorAwareInterfaceTrait;
27
+    use TranslatorAwareInterfaceTrait;
28 28
 
29 29
     /**
30 30
      * Needles (static)
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      * 
78 78
      * @param array $tags
79 79
      * @param \Zend\I18n\Translator\TranslatorInterface $translator
80
-	 * @return \UIComponents\Template\TemplateAbstract
80
+     * @return \UIComponents\Template\TemplateAbstract
81 81
      */
82 82
     public function __construct ($tags = false, $translator = null)
83 83
     {
Please login to merge, or discard this patch.
module/UIComponents/src/UIComponents/Template/TemplateInterface.php 1 patch
Indentation   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -22,44 +22,44 @@
 block discarded – undo
22 22
 interface TemplateInterface
23 23
 {
24 24
 
25
-	/**
26
-	 * Set Templates placeholders and values
27
-	 *
28
-	 * With this method you can replace the placeholders
29
-	 * in the static templates with dynamic data.
30
-	 *
31
-	 * @param $which String 's' for Static or else dynamic
32
-	 * @param $needle String Placeholder
33
-	 * @param $replacement String Replacement String
34
-	 *
35
-	 * @return void
36
-	 */
37
-	public function set($which = 's', $needle, $replacement);
25
+    /**
26
+     * Set Templates placeholders and values
27
+     *
28
+     * With this method you can replace the placeholders
29
+     * in the static templates with dynamic data.
30
+     *
31
+     * @param $which String 's' for Static or else dynamic
32
+     * @param $needle String Placeholder
33
+     * @param $replacement String Replacement String
34
+     *
35
+     * @return void
36
+     */
37
+    public function set($which = 's', $needle, $replacement);
38 38
 
39
-	/**
40
-	 * Iterate internal counter by one
41
-	 *
42
-	 * @return void
43
-	 */
44
-	public function next();
39
+    /**
40
+     * Iterate internal counter by one
41
+     *
42
+     * @return void
43
+     */
44
+    public function next();
45 45
 
46
-	/**
47
-	 * Reset template data
48
-	 *
49
-	 * @return void
50
-	 */
51
-	public function reset();
46
+    /**
47
+     * Reset template data
48
+     *
49
+     * @return void
50
+     */
51
+    public function reset();
52 52
 
53
-	/**
54
-	 * Generate the template and
55
-	 * print/return it. (do translations sequentially to save memory!!!)
56
-	 *
57
-	 * @param $template string/file Template
58
-	 * @param $return bool Return or print template
59
-	 *
60
-	 * @return string complete Template string
61
-	 */
62
-	public function generate($template, $return = 0);
53
+    /**
54
+     * Generate the template and
55
+     * print/return it. (do translations sequentially to save memory!!!)
56
+     *
57
+     * @param $template string/file Template
58
+     * @param $return bool Return or print template
59
+     *
60
+     * @return string complete Template string
61
+     */
62
+    public function generate($template, $return = 0);
63 63
 
64 64
 	
65 65
 }
Please login to merge, or discard this patch.
src/UIComponents/View/Helper/Traits/ComponentClassnamesTrait.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
  */
23 23
 trait ComponentClassnamesTrait {
24 24
 
25
-	/**
25
+    /**
26 26
      * component's class-names
27 27
      *
28 28
      * @var string
Please login to merge, or discard this patch.
src/UIComponents/View/Helper/Traits/ComponentServiceManagersTrait.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -36,12 +36,12 @@
 block discarded – undo
36 36
      */
37 37
     protected $serviceLocator;
38 38
 
39
-     /**
40
-     * Set the event manager.
41
-     *
42
-     * @param    EventManagerInterface $events
43
-     * @return    AbstractHelper
44
-     */
39
+        /**
40
+         * Set the event manager.
41
+         *
42
+         * @param    EventManagerInterface $events
43
+         * @return    AbstractHelper
44
+         */
45 45
     public function setEventManager(EventManagerInterface $events)
46 46
     {
47 47
         $events->setIdentifiers([
Please login to merge, or discard this patch.
UIComponents/src/UIComponents/View/Helper/Traits/ComponentAclTrait.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      */
62 62
     protected static $defaultRole;
63 63
 
64
-	/**
64
+    /**
65 65
      * Sets ACL to use when iterating pages
66 66
      *
67 67
      * Implements {@link HelperInterface::setAcl()}.
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
         return false;
111 111
     }
112 112
 
113
-	/**
113
+    /**
114 114
      * Sets ACL role(s) to use when iterating pages
115 115
      *
116 116
      * Implements {@link HelperInterface::setRole()}.
Please login to merge, or discard this patch.
UIComponents/src/UIComponents/View/Helper/Components/Languagemenu.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -479,12 +479,12 @@
 block discarded – undo
479 479
                         ''.Locale::getDisplayLanguage(null). // ' - '.Locale::getDefault().' - '.Locale::getPrimaryLanguage(null).''.
480 480
                         '<span class="caret"></span>'.
481 481
                     '</a>'.
482
-                       sprintf(
482
+                        sprintf(
483 483
                         '<ul%s>%s</ul>',
484 484
                         ($subulclass) ? sprintf(' class="%s"', $subulclass) : '',
485 485
                         $list
486
-                       ).
487
-                   '</li>'.
486
+                        ).
487
+                    '</li>'.
488 488
             '</ul>'
489 489
         ;
490 490
 
Please login to merge, or discard this patch.
module/UIComponents/src/UIComponents/View/Helper/AbstractHelper.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
     
103 103
     
104 104
 
105
-   /**
105
+    /**
106 106
      * Magic overload: Proxy calls to the navigation container
107 107
      *
108 108
      * @param    string $method    method name in container
Please login to merge, or discard this patch.
UIComponents/src/UIComponents/View/Helper/Utilities/PluginManager.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,8 +40,8 @@
 block discarded – undo
40 40
         'appfavicon'    => 'UIComponents\View\Helper\Utilities\AppFavicon',
41 41
         'applogo'       => 'UIComponents\View\Helper\Utilities\AppLogo',
42 42
 
43
-    	'framework'     => 'UIComponents\View\Helper\Utilities\Framework',
44
-    	'template'      => 'UIComponents\View\Helper\Utilities\Framework',
43
+        'framework'     => 'UIComponents\View\Helper\Utilities\Framework',
44
+        'template'      => 'UIComponents\View\Helper\Utilities\Framework',
45 45
     ];
46 46
     
47 47
 }
Please login to merge, or discard this patch.