Passed
Pull Request — master (#18)
by
unknown
03:09
created
src/Builder/PhpDomainBuilder.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -348,15 +348,15 @@
 block discarded – undo
348 348
     protected function addProperties($properties)
349 349
     {
350 350
         //Choose display properties
351
-		$displayProperties = [];
352
-		foreach ($properties as $property) {
353
-			if ($this->shouldRenderElement($property)) {
354
-				$displayProperties[] = $property;
355
-			}
356
-		}
357
-
358
-		//Render
359
-		if (count($displayProperties) > 0) {
351
+        $displayProperties = [];
352
+        foreach ($properties as $property) {
353
+            if ($this->shouldRenderElement($property)) {
354
+                $displayProperties[] = $property;
355
+            }
356
+        }
357
+
358
+        //Render
359
+        if (count($displayProperties) > 0) {
360 360
             $this->addH2('Properties');
361 361
             foreach ($displayProperties as $property) {
362 362
                     $this->addProperty($property);
Please login to merge, or discard this patch.
src/Extension/TocExtension.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -50,10 +50,10 @@
 block discarded – undo
50 50
                 if (count($interface->getMethods()) > 0) {
51 51
                     $builder->addH3('Methods');
52 52
                     foreach ($interface->getMethods() as $method) {
53
-						//We don't want add an no displayed method to Summary
54
-						if (!$builder->shouldRenderElement($method)) {
55
-							continue;
56
-						}
53
+                        //We don't want add an no displayed method to Summary
54
+                        if (!$builder->shouldRenderElement($method)) {
55
+                            continue;
56
+                        }
57 57
 
58 58
 
59 59
                         $args = '';
Please login to merge, or discard this patch.