Test Setup Failed
Branch release/2.x (8ffe62)
by Muhammed
22:08
created
src/Zicht/Bundle/UrlBundle/Entity/StaticReference.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@
 block discarded – undo
150 150
     }
151 151
 
152 152
     /**
153
-     * @return mixed
153
+     * @return StaticReferenceTranslation[]
154 154
      */
155 155
     public function getTranslations()
156 156
     {
Please login to merge, or discard this patch.
src/Zicht/Bundle/UrlBundle/Url/Params/UriParser.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
      * Proxy method for translateKeyInput() of the translator
145 145
      *
146 146
      * @param string $keyName
147
-     * @return bool
147
+     * @return string|false
148 148
      */
149 149
     final public function translateKeyInput($keyName)
150 150
     {
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
      *
162 162
      * @param string $keyName
163 163
      * @param mixed $value
164
-     * @return bool
164
+     * @return string|false
165 165
      */
166 166
     final public function translateValueInput($keyName, $value)
167 167
     {
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
      * Proxy method for translateKeyOutput() of the translator
178 178
      *
179 179
      * @param string $keyName
180
-     * @return bool
180
+     * @return string|false
181 181
      */
182 182
     final public function translateKeyOutput($keyName)
183 183
     {
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
      *
194 194
      * @param string $keyName
195 195
      * @param string $value
196
-     * @return bool
196
+     * @return string|false
197 197
      */
198 198
     final public function translateValueOutput($keyName, $value)
199 199
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
             if ($external = $this->translateKeyOutput($param)) {
122 122
                 $param = $external;
123 123
             }
124
-            $ret .= $param . $this->seperators['key_value'];
124
+            $ret .= $param.$this->seperators['key_value'];
125 125
             $firstValue = true;
126 126
             foreach ($values as $value) {
127 127
                 if ($external = $this->translateValueOutput($internal, $value)) {
Please login to merge, or discard this patch.
src/Zicht/Bundle/UrlBundle/DependencyInjection/Configuration.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,10 +22,10 @@
 block discarded – undo
22 22
         $treeBuilder = new TreeBuilder();
23 23
         $rootNode = $treeBuilder->root('zicht_url');
24 24
 
25
-        $isBool = function ($v) {
25
+        $isBool = function($v) {
26 26
             return is_bool($v);
27 27
         };
28
-        $convertToEnabledKey = function ($v) {
28
+        $convertToEnabledKey = function($v) {
29 29
             return array('enabled' => $v);
30 30
         };
31 31
 
Please login to merge, or discard this patch.
src/Zicht/Bundle/UrlBundle/DependencyInjection/ZichtUrlExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
      */
28 28
     public function load(array $configs, ContainerBuilder $container)
29 29
     {
30
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
30
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
31 31
         $loader->load('services.xml');
32 32
 
33 33
         $config = $this->processConfiguration(new Configuration(), $configs);
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         }
72 72
 
73 73
         $formResources = $container->getParameter('twig.form.resources');
74
-        $formResources[]= 'ZichtUrlBundle::form_theme.html.twig';
74
+        $formResources[] = 'ZichtUrlBundle::form_theme.html.twig';
75 75
         $container->setParameter('twig.form.resources', $formResources);
76 76
     }
77 77
 
Please login to merge, or discard this patch.
src/Zicht/Bundle/UrlBundle/Entity/ErrorLog.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
     public function __toString()
96 96
     {
97 97
         return (string)$this->message
98
-            . ' @ ' . (string)($this->date_created ? $this->date_created->format('YmdHis') : '');
98
+            . ' @ '.(string)($this->date_created ? $this->date_created->format('YmdHis') : '');
99 99
     }
100 100
 
101 101
     /**
Please login to merge, or discard this patch.
src/Zicht/Bundle/UrlBundle/Entity/Repository/UrlAliasRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     {
22 22
         $where = ['public_url' => $publicUrl];
23 23
         if (null !== $mode) {
24
-            $where['mode']= $mode;
24
+            $where['mode'] = $mode;
25 25
         }
26 26
         return $this->findOneBy($where);
27 27
     }
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     {
34 34
         $where = ['internal_url' => $internalUrl];
35 35
         if (null !== $mode) {
36
-            $where['mode']= $mode;
36
+            $where['mode'] = $mode;
37 37
         }
38 38
         return $this->findOneBy($where);
39 39
     }
Please login to merge, or discard this patch.
src/Zicht/Bundle/UrlBundle/Entity/UrlAlias.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,17 +25,17 @@
 block discarded – undo
25 25
      * The alias is an internal rewrite, i.e. external url's are rewritten to internal on request,
26 26
      * and vice versa when composing an url.
27 27
      */
28
-    const REWRITE   = 0;
28
+    const REWRITE = 0;
29 29
 
30 30
     /**
31 31
      * The MOVE type yields a 301 response with the internal url if the public url is matched
32 32
      */
33
-    const MOVE      = 301;
33
+    const MOVE = 301;
34 34
 
35 35
     /**
36 36
      * The ALIAS type yields a 302 response with the internal url if the public url is matched
37 37
      */
38
-    const ALIAS     = 302;
38
+    const ALIAS = 302;
39 39
 
40 40
     /**
41 41
      * @ORM\Id
Please login to merge, or discard this patch.
src/Zicht/Bundle/UrlBundle/Form/Extension/TinymceTypeExtension.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      */
41 41
     public function getExtendedType()
42 42
     {
43
-       return TinymceTypeExtension::class;
43
+        return TinymceTypeExtension::class;
44 44
     }
45 45
 
46 46
     /**
Please login to merge, or discard this patch.
src/Zicht/Bundle/UrlBundle/Twig/UrlExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -108,13 +108,13 @@
 block discarded – undo
108 108
             try {
109 109
                 $this->static_refs[$name] = $this->provider->url($name);
110 110
             } catch (UnsupportedException $e) {
111
-                $this->static_refs[$name] = '/[static_reference: '. $name . ']';
111
+                $this->static_refs[$name] = '/[static_reference: '.$name.']';
112 112
             }
113 113
         }
114 114
 
115 115
         $ret = $this->static_refs[$name];
116 116
         if ($params) {
117
-            $ret .= '?' . http_build_query($params, 0, '&');
117
+            $ret .= '?'.http_build_query($params, 0, '&');
118 118
         }
119 119
 
120 120
         return $ret;
Please login to merge, or discard this patch.