Completed
Push — master ( 8e973a...811a95 )
by
unknown
03:40 queued 01:04
created
vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Coalesce.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@
 block discarded – undo
6 6
 
7 7
 class Coalesce extends BinaryOp
8 8
 {
9
-    public function getOperatorSigil() : string {
10
-        return '??';
11
-    }
9
+	public function getOperatorSigil() : string {
10
+		return '??';
11
+	}
12 12
     
13
-    public function getType() : string {
14
-        return 'Expr_BinaryOp_Coalesce';
15
-    }
13
+	public function getType() : string {
14
+		return 'Expr_BinaryOp_Coalesce';
15
+	}
16 16
 }
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\BinaryOp;
6 6
 
7
-class Coalesce extends BinaryOp
8
-{
7
+class Coalesce extends BinaryOp {
9 8
     public function getOperatorSigil() : string {
10 9
         return '??';
11 10
     }
Please login to merge, or discard this patch.
php-scoper/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Mul.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@
 block discarded – undo
6 6
 
7 7
 class Mul extends BinaryOp
8 8
 {
9
-    public function getOperatorSigil() : string {
10
-        return '*';
11
-    }
9
+	public function getOperatorSigil() : string {
10
+		return '*';
11
+	}
12 12
     
13
-    public function getType() : string {
14
-        return 'Expr_BinaryOp_Mul';
15
-    }
13
+	public function getType() : string {
14
+		return 'Expr_BinaryOp_Mul';
15
+	}
16 16
 }
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\BinaryOp;
6 6
 
7
-class Mul extends BinaryOp
8
-{
7
+class Mul extends BinaryOp {
9 8
     public function getOperatorSigil() : string {
10 9
         return '*';
11 10
     }
Please login to merge, or discard this patch.
vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Identical.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@
 block discarded – undo
6 6
 
7 7
 class Identical extends BinaryOp
8 8
 {
9
-    public function getOperatorSigil() : string {
10
-        return '===';
11
-    }
9
+	public function getOperatorSigil() : string {
10
+		return '===';
11
+	}
12 12
     
13
-    public function getType() : string {
14
-        return 'Expr_BinaryOp_Identical';
15
-    }
13
+	public function getType() : string {
14
+		return 'Expr_BinaryOp_Identical';
15
+	}
16 16
 }
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\BinaryOp;
6 6
 
7
-class Identical extends BinaryOp
8
-{
7
+class Identical extends BinaryOp {
9 8
     public function getOperatorSigil() : string {
10 9
         return '===';
11 10
     }
Please login to merge, or discard this patch.
vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftRight.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@
 block discarded – undo
6 6
 
7 7
 class ShiftRight extends BinaryOp
8 8
 {
9
-    public function getOperatorSigil() : string {
10
-        return '>>';
11
-    }
9
+	public function getOperatorSigil() : string {
10
+		return '>>';
11
+	}
12 12
     
13
-    public function getType() : string {
14
-        return 'Expr_BinaryOp_ShiftRight';
15
-    }
13
+	public function getType() : string {
14
+		return 'Expr_BinaryOp_ShiftRight';
15
+	}
16 16
 }
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\BinaryOp;
6 6
 
7
-class ShiftRight extends BinaryOp
8
-{
7
+class ShiftRight extends BinaryOp {
9 8
     public function getOperatorSigil() : string {
10 9
         return '>>';
11 10
     }
Please login to merge, or discard this patch.
vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/ShiftLeft.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@
 block discarded – undo
6 6
 
7 7
 class ShiftLeft extends BinaryOp
8 8
 {
9
-    public function getOperatorSigil() : string {
10
-        return '<<';
11
-    }
9
+	public function getOperatorSigil() : string {
10
+		return '<<';
11
+	}
12 12
     
13
-    public function getType() : string {
14
-        return 'Expr_BinaryOp_ShiftLeft';
15
-    }
13
+	public function getType() : string {
14
+		return 'Expr_BinaryOp_ShiftLeft';
15
+	}
16 16
 }
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\BinaryOp;
6 6
 
7
-class ShiftLeft extends BinaryOp
8
-{
7
+class ShiftLeft extends BinaryOp {
9 8
     public function getOperatorSigil() : string {
10 9
         return '<<';
11 10
     }
Please login to merge, or discard this patch.
vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanOr.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@
 block discarded – undo
6 6
 
7 7
 class BooleanOr extends BinaryOp
8 8
 {
9
-    public function getOperatorSigil() : string {
10
-        return '||';
11
-    }
9
+	public function getOperatorSigil() : string {
10
+		return '||';
11
+	}
12 12
     
13
-    public function getType() : string {
14
-        return 'Expr_BinaryOp_BooleanOr';
15
-    }
13
+	public function getType() : string {
14
+		return 'Expr_BinaryOp_BooleanOr';
15
+	}
16 16
 }
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\BinaryOp;
6 6
 
7
-class BooleanOr extends BinaryOp
8
-{
7
+class BooleanOr extends BinaryOp {
9 8
     public function getOperatorSigil() : string {
10 9
         return '||';
11 10
     }
Please login to merge, or discard this patch.
vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/Spaceship.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@
 block discarded – undo
6 6
 
7 7
 class Spaceship extends BinaryOp
8 8
 {
9
-    public function getOperatorSigil() : string {
10
-        return '<=>';
11
-    }
9
+	public function getOperatorSigil() : string {
10
+		return '<=>';
11
+	}
12 12
     
13
-    public function getType() : string {
14
-        return 'Expr_BinaryOp_Spaceship';
15
-    }
13
+	public function getType() : string {
14
+		return 'Expr_BinaryOp_Spaceship';
15
+	}
16 16
 }
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\BinaryOp;
6 6
 
7
-class Spaceship extends BinaryOp
8
-{
7
+class Spaceship extends BinaryOp {
9 8
     public function getOperatorSigil() : string {
10 9
         return '<=>';
11 10
     }
Please login to merge, or discard this patch.
vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BooleanAnd.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@
 block discarded – undo
6 6
 
7 7
 class BooleanAnd extends BinaryOp
8 8
 {
9
-    public function getOperatorSigil() : string {
10
-        return '&&';
11
-    }
9
+	public function getOperatorSigil() : string {
10
+		return '&&';
11
+	}
12 12
     
13
-    public function getType() : string {
14
-        return 'Expr_BinaryOp_BooleanAnd';
15
-    }
13
+	public function getType() : string {
14
+		return 'Expr_BinaryOp_BooleanAnd';
15
+	}
16 16
 }
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\BinaryOp;
6 6
 
7
-class BooleanAnd extends BinaryOp
8
-{
7
+class BooleanAnd extends BinaryOp {
9 8
     public function getOperatorSigil() : string {
10 9
         return '&&';
11 10
     }
Please login to merge, or discard this patch.
vendor/nikic/php-parser/lib/PhpParser/Node/Expr/BinaryOp/BitwiseXor.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,11 +6,11 @@
 block discarded – undo
6 6
 
7 7
 class BitwiseXor extends BinaryOp
8 8
 {
9
-    public function getOperatorSigil() : string {
10
-        return '^';
11
-    }
9
+	public function getOperatorSigil() : string {
10
+		return '^';
11
+	}
12 12
     
13
-    public function getType() : string {
14
-        return 'Expr_BinaryOp_BitwiseXor';
15
-    }
13
+	public function getType() : string {
14
+		return 'Expr_BinaryOp_BitwiseXor';
15
+	}
16 16
 }
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\BinaryOp;
6 6
 
7
-class BitwiseXor extends BinaryOp
8
-{
7
+class BitwiseXor extends BinaryOp {
9 8
     public function getOperatorSigil() : string {
10 9
         return '^';
11 10
     }
Please login to merge, or discard this patch.