Completed
Push — master ( 8e973a...811a95 )
by
unknown
03:40 queued 01:04
created
vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseAnd.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class BitwiseAnd extends AssignOp
8 8
 {
9
-    public function getType() : string {
10
-        return 'Expr_AssignOp_BitwiseAnd';
11
-    }
9
+	public function getType() : string {
10
+		return 'Expr_AssignOp_BitwiseAnd';
11
+	}
12 12
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use PhpParser\Node\Expr\AssignOp;
6 6
 
7
-class BitwiseAnd extends AssignOp
8
-{
7
+class BitwiseAnd extends AssignOp {
9 8
     public function getType() : string {
10 9
         return 'Expr_AssignOp_BitwiseAnd';
11 10
     }
Please login to merge, or discard this patch.
vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignOp/BitwiseOr.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class BitwiseOr extends AssignOp
8 8
 {
9
-    public function getType() : string {
10
-        return 'Expr_AssignOp_BitwiseOr';
11
-    }
9
+	public function getType() : string {
10
+		return 'Expr_AssignOp_BitwiseOr';
11
+	}
12 12
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use PhpParser\Node\Expr\AssignOp;
6 6
 
7
-class BitwiseOr extends AssignOp
8
-{
7
+class BitwiseOr extends AssignOp {
9 8
     public function getType() : string {
10 9
         return 'Expr_AssignOp_BitwiseOr';
11 10
     }
Please login to merge, or discard this patch.
php-scoper/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Double.php 3 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -6,12 +6,12 @@
 block discarded – undo
6 6
 
7 7
 class Double extends Cast
8 8
 {
9
-    // For use in "kind" attribute
10
-    const KIND_DOUBLE = 1; // "double" syntax
11
-    const KIND_FLOAT = 2;  // "float" syntax
12
-    const KIND_REAL = 3; // "real" syntax
9
+	// For use in "kind" attribute
10
+	const KIND_DOUBLE = 1; // "double" syntax
11
+	const KIND_FLOAT = 2;  // "float" syntax
12
+	const KIND_REAL = 3; // "real" syntax
13 13
 
14
-    public function getType() : string {
15
-        return 'Expr_Cast_Double';
16
-    }
14
+	public function getType() : string {
15
+		return 'Expr_Cast_Double';
16
+	}
17 17
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     // For use in "kind" attribute
10 10
     const KIND_DOUBLE = 1; // "double" syntax
11
-    const KIND_FLOAT = 2;  // "float" syntax
11
+    const KIND_FLOAT = 2; // "float" syntax
12 12
     const KIND_REAL = 3; // "real" syntax
13 13
 
14 14
     public function getType() : string {
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use PhpParser\Node\Expr\Cast;
6 6
 
7
-class Double extends Cast
8
-{
7
+class Double extends Cast {
9 8
     // For use in "kind" attribute
10 9
     const KIND_DOUBLE = 1; // "double" syntax
11 10
     const KIND_FLOAT = 2;  // "float" syntax
Please login to merge, or discard this patch.
php-scoper/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/String_.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class String_ extends Cast
8 8
 {
9
-    public function getType() : string {
10
-        return 'Expr_Cast_String';
11
-    }
9
+	public function getType() : string {
10
+		return 'Expr_Cast_String';
11
+	}
12 12
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use PhpParser\Node\Expr\Cast;
6 6
 
7
-class String_ extends Cast
8
-{
7
+class String_ extends Cast {
9 8
     public function getType() : string {
10 9
         return 'Expr_Cast_String';
11 10
     }
Please login to merge, or discard this patch.
php-scoper/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Unset_.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class Unset_ extends Cast
8 8
 {
9
-    public function getType() : string {
10
-        return 'Expr_Cast_Unset';
11
-    }
9
+	public function getType() : string {
10
+		return 'Expr_Cast_Unset';
11
+	}
12 12
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use PhpParser\Node\Expr\Cast;
6 6
 
7
-class Unset_ extends Cast
8
-{
7
+class Unset_ extends Cast {
9 8
     public function getType() : string {
10 9
         return 'Expr_Cast_Unset';
11 10
     }
Please login to merge, or discard this patch.
php-scoper/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Bool_.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class Bool_ extends Cast
8 8
 {
9
-    public function getType() : string {
10
-        return 'Expr_Cast_Bool';
11
-    }
9
+	public function getType() : string {
10
+		return 'Expr_Cast_Bool';
11
+	}
12 12
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use PhpParser\Node\Expr\Cast;
6 6
 
7
-class Bool_ extends Cast
8
-{
7
+class Bool_ extends Cast {
9 8
     public function getType() : string {
10 9
         return 'Expr_Cast_Bool';
11 10
     }
Please login to merge, or discard this patch.
php-scoper/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Object_.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class Object_ extends Cast
8 8
 {
9
-    public function getType() : string {
10
-        return 'Expr_Cast_Object';
11
-    }
9
+	public function getType() : string {
10
+		return 'Expr_Cast_Object';
11
+	}
12 12
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use PhpParser\Node\Expr\Cast;
6 6
 
7
-class Object_ extends Cast
8
-{
7
+class Object_ extends Cast {
9 8
     public function getType() : string {
10 9
         return 'Expr_Cast_Object';
11 10
     }
Please login to merge, or discard this patch.
php-scoper/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Int_.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class Int_ extends Cast
8 8
 {
9
-    public function getType() : string {
10
-        return 'Expr_Cast_Int';
11
-    }
9
+	public function getType() : string {
10
+		return 'Expr_Cast_Int';
11
+	}
12 12
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use PhpParser\Node\Expr\Cast;
6 6
 
7
-class Int_ extends Cast
8
-{
7
+class Int_ extends Cast {
9 8
     public function getType() : string {
10 9
         return 'Expr_Cast_Int';
11 10
     }
Please login to merge, or discard this patch.
php-scoper/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Array_.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
 
7 7
 class Array_ extends Cast
8 8
 {
9
-    public function getType() : string {
10
-        return 'Expr_Cast_Array';
11
-    }
9
+	public function getType() : string {
10
+		return 'Expr_Cast_Array';
11
+	}
12 12
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,8 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use PhpParser\Node\Expr\Cast;
6 6
 
7
-class Array_ extends Cast
8
-{
7
+class Array_ extends Cast {
9 8
     public function getType() : string {
10 9
         return 'Expr_Cast_Array';
11 10
     }
Please login to merge, or discard this patch.