Completed
Push — master ( 8e973a...811a95 )
by
unknown
03:40 queued 01:04
created
php-scoper/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/YieldFrom.php 2 patches
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -6,25 +6,25 @@
 block discarded – undo
6 6
 
7 7
 class YieldFrom extends Expr
8 8
 {
9
-    /** @var Expr Expression to yield from */
10
-    public $expr;
9
+	/** @var Expr Expression to yield from */
10
+	public $expr;
11 11
 
12
-    /**
13
-     * Constructs an "yield from" node.
14
-     *
15
-     * @param Expr  $expr       Expression
16
-     * @param array $attributes Additional attributes
17
-     */
18
-    public function __construct(Expr $expr, array $attributes = []) {
19
-        $this->attributes = $attributes;
20
-        $this->expr = $expr;
21
-    }
12
+	/**
13
+	 * Constructs an "yield from" node.
14
+	 *
15
+	 * @param Expr  $expr       Expression
16
+	 * @param array $attributes Additional attributes
17
+	 */
18
+	public function __construct(Expr $expr, array $attributes = []) {
19
+		$this->attributes = $attributes;
20
+		$this->expr = $expr;
21
+	}
22 22
 
23
-    public function getSubNodeNames() : array {
24
-        return ['expr'];
25
-    }
23
+	public function getSubNodeNames() : array {
24
+		return ['expr'];
25
+	}
26 26
     
27
-    public function getType() : string {
28
-        return 'Expr_YieldFrom';
29
-    }
27
+	public function getType() : string {
28
+		return 'Expr_YieldFrom';
29
+	}
30 30
 }
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;
6 6
 
7
-class YieldFrom extends Expr
8
-{
7
+class YieldFrom extends Expr {
9 8
     /** @var Expr Expression to yield from */
10 9
     public $expr;
11 10
 
Please login to merge, or discard this patch.
php-scoper/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/AssignRef.php 2 patches
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -6,29 +6,29 @@
 block discarded – undo
6 6
 
7 7
 class AssignRef extends Expr
8 8
 {
9
-    /** @var Expr Variable reference is assigned to */
10
-    public $var;
11
-    /** @var Expr Variable which is referenced */
12
-    public $expr;
9
+	/** @var Expr Variable reference is assigned to */
10
+	public $var;
11
+	/** @var Expr Variable which is referenced */
12
+	public $expr;
13 13
 
14
-    /**
15
-     * Constructs an assignment node.
16
-     *
17
-     * @param Expr  $var        Variable
18
-     * @param Expr  $expr       Expression
19
-     * @param array $attributes Additional attributes
20
-     */
21
-    public function __construct(Expr $var, Expr $expr, array $attributes = []) {
22
-        $this->attributes = $attributes;
23
-        $this->var = $var;
24
-        $this->expr = $expr;
25
-    }
14
+	/**
15
+	 * Constructs an assignment node.
16
+	 *
17
+	 * @param Expr  $var        Variable
18
+	 * @param Expr  $expr       Expression
19
+	 * @param array $attributes Additional attributes
20
+	 */
21
+	public function __construct(Expr $var, Expr $expr, array $attributes = []) {
22
+		$this->attributes = $attributes;
23
+		$this->var = $var;
24
+		$this->expr = $expr;
25
+	}
26 26
 
27
-    public function getSubNodeNames() : array {
28
-        return ['var', 'expr'];
29
-    }
27
+	public function getSubNodeNames() : array {
28
+		return ['var', 'expr'];
29
+	}
30 30
     
31
-    public function getType() : string {
32
-        return 'Expr_AssignRef';
33
-    }
31
+	public function getType() : string {
32
+		return 'Expr_AssignRef';
33
+	}
34 34
 }
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;
6 6
 
7
-class AssignRef extends Expr
8
-{
7
+class AssignRef extends Expr {
9 8
     /** @var Expr Variable reference is assigned to */
10 9
     public $var;
11 10
     /** @var Expr Variable which is referenced */
Please login to merge, or discard this patch.
php-scoper/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Throw_.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -6,25 +6,25 @@
 block discarded – undo
6 6
 
7 7
 class Throw_ extends Node\Expr
8 8
 {
9
-    /** @var Node\Expr Expression */
10
-    public $expr;
9
+	/** @var Node\Expr Expression */
10
+	public $expr;
11 11
 
12
-    /**
13
-     * Constructs a throw expression node.
14
-     *
15
-     * @param Node\Expr $expr       Expression
16
-     * @param array     $attributes Additional attributes
17
-     */
18
-    public function __construct(Node\Expr $expr, array $attributes = []) {
19
-        $this->attributes = $attributes;
20
-        $this->expr = $expr;
21
-    }
12
+	/**
13
+	 * Constructs a throw expression node.
14
+	 *
15
+	 * @param Node\Expr $expr       Expression
16
+	 * @param array     $attributes Additional attributes
17
+	 */
18
+	public function __construct(Node\Expr $expr, array $attributes = []) {
19
+		$this->attributes = $attributes;
20
+		$this->expr = $expr;
21
+	}
22 22
 
23
-    public function getSubNodeNames() : array {
24
-        return ['expr'];
25
-    }
23
+	public function getSubNodeNames() : array {
24
+		return ['expr'];
25
+	}
26 26
 
27
-    public function getType() : string {
28
-        return 'Expr_Throw';
29
-    }
27
+	public function getType() : string {
28
+		return 'Expr_Throw';
29
+	}
30 30
 }
Please login to merge, or discard this patch.
vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ArrayDimFetch.php 2 patches
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -6,29 +6,29 @@
 block discarded – undo
6 6
 
7 7
 class ArrayDimFetch extends Expr
8 8
 {
9
-    /** @var Expr Variable */
10
-    public $var;
11
-    /** @var null|Expr Array index / dim */
12
-    public $dim;
9
+	/** @var Expr Variable */
10
+	public $var;
11
+	/** @var null|Expr Array index / dim */
12
+	public $dim;
13 13
 
14
-    /**
15
-     * Constructs an array index fetch node.
16
-     *
17
-     * @param Expr      $var        Variable
18
-     * @param null|Expr $dim        Array index / dim
19
-     * @param array     $attributes Additional attributes
20
-     */
21
-    public function __construct(Expr $var, ?Expr $dim = null, array $attributes = []) {
22
-        $this->attributes = $attributes;
23
-        $this->var = $var;
24
-        $this->dim = $dim;
25
-    }
14
+	/**
15
+	 * Constructs an array index fetch node.
16
+	 *
17
+	 * @param Expr      $var        Variable
18
+	 * @param null|Expr $dim        Array index / dim
19
+	 * @param array     $attributes Additional attributes
20
+	 */
21
+	public function __construct(Expr $var, ?Expr $dim = null, array $attributes = []) {
22
+		$this->attributes = $attributes;
23
+		$this->var = $var;
24
+		$this->dim = $dim;
25
+	}
26 26
 
27
-    public function getSubNodeNames() : array {
28
-        return ['var', 'dim'];
29
-    }
27
+	public function getSubNodeNames() : array {
28
+		return ['var', 'dim'];
29
+	}
30 30
     
31
-    public function getType() : string {
32
-        return 'Expr_ArrayDimFetch';
33
-    }
31
+	public function getType() : string {
32
+		return 'Expr_ArrayDimFetch';
33
+	}
34 34
 }
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;
6 6
 
7
-class ArrayDimFetch extends Expr
8
-{
7
+class ArrayDimFetch extends Expr {
9 8
     /** @var Expr Variable */
10 9
     public $var;
11 10
     /** @var null|Expr Array index / dim */
Please login to merge, or discard this patch.
php-scoper/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ConstFetch.php 2 patches
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -7,25 +7,25 @@
 block discarded – undo
7 7
 
8 8
 class ConstFetch extends Expr
9 9
 {
10
-    /** @var Name Constant name */
11
-    public $name;
10
+	/** @var Name Constant name */
11
+	public $name;
12 12
 
13
-    /**
14
-     * Constructs a const fetch node.
15
-     *
16
-     * @param Name  $name       Constant name
17
-     * @param array $attributes Additional attributes
18
-     */
19
-    public function __construct(Name $name, array $attributes = []) {
20
-        $this->attributes = $attributes;
21
-        $this->name = $name;
22
-    }
13
+	/**
14
+	 * Constructs a const fetch node.
15
+	 *
16
+	 * @param Name  $name       Constant name
17
+	 * @param array $attributes Additional attributes
18
+	 */
19
+	public function __construct(Name $name, array $attributes = []) {
20
+		$this->attributes = $attributes;
21
+		$this->name = $name;
22
+	}
23 23
 
24
-    public function getSubNodeNames() : array {
25
-        return ['name'];
26
-    }
24
+	public function getSubNodeNames() : array {
25
+		return ['name'];
26
+	}
27 27
     
28
-    public function getType() : string {
29
-        return 'Expr_ConstFetch';
30
-    }
28
+	public function getType() : string {
29
+		return 'Expr_ConstFetch';
30
+	}
31 31
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,8 +5,7 @@
 block discarded – undo
5 5
 use PhpParser\Node\Expr;
6 6
 use PhpParser\Node\Name;
7 7
 
8
-class ConstFetch extends Expr
9
-{
8
+class ConstFetch extends Expr {
10 9
     /** @var Name Constant name */
11 10
     public $name;
12 11
 
Please login to merge, or discard this patch.
php-scoper/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/PostDec.php 2 patches
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -6,25 +6,25 @@
 block discarded – undo
6 6
 
7 7
 class PostDec extends Expr
8 8
 {
9
-    /** @var Expr Variable */
10
-    public $var;
9
+	/** @var Expr Variable */
10
+	public $var;
11 11
 
12
-    /**
13
-     * Constructs a post decrement node.
14
-     *
15
-     * @param Expr  $var        Variable
16
-     * @param array $attributes Additional attributes
17
-     */
18
-    public function __construct(Expr $var, array $attributes = []) {
19
-        $this->attributes = $attributes;
20
-        $this->var = $var;
21
-    }
12
+	/**
13
+	 * Constructs a post decrement node.
14
+	 *
15
+	 * @param Expr  $var        Variable
16
+	 * @param array $attributes Additional attributes
17
+	 */
18
+	public function __construct(Expr $var, array $attributes = []) {
19
+		$this->attributes = $attributes;
20
+		$this->var = $var;
21
+	}
22 22
 
23
-    public function getSubNodeNames() : array {
24
-        return ['var'];
25
-    }
23
+	public function getSubNodeNames() : array {
24
+		return ['var'];
25
+	}
26 26
     
27
-    public function getType() : string {
28
-        return 'Expr_PostDec';
29
-    }
27
+	public function getType() : string {
28
+		return 'Expr_PostDec';
29
+	}
30 30
 }
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;
6 6
 
7
-class PostDec extends Expr
8
-{
7
+class PostDec extends Expr {
9 8
     /** @var Expr Variable */
10 9
     public $var;
11 10
 
Please login to merge, or discard this patch.
php-scoper/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Exit_.php 2 patches
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -6,29 +6,29 @@
 block discarded – undo
6 6
 
7 7
 class Exit_ extends Expr
8 8
 {
9
-    /* For use in "kind" attribute */
10
-    const KIND_EXIT = 1;
11
-    const KIND_DIE = 2;
9
+	/* For use in "kind" attribute */
10
+	const KIND_EXIT = 1;
11
+	const KIND_DIE = 2;
12 12
 
13
-    /** @var null|Expr Expression */
14
-    public $expr;
13
+	/** @var null|Expr Expression */
14
+	public $expr;
15 15
 
16
-    /**
17
-     * Constructs an exit() node.
18
-     *
19
-     * @param null|Expr $expr       Expression
20
-     * @param array                    $attributes Additional attributes
21
-     */
22
-    public function __construct(?Expr $expr = null, array $attributes = []) {
23
-        $this->attributes = $attributes;
24
-        $this->expr = $expr;
25
-    }
16
+	/**
17
+	 * Constructs an exit() node.
18
+	 *
19
+	 * @param null|Expr $expr       Expression
20
+	 * @param array                    $attributes Additional attributes
21
+	 */
22
+	public function __construct(?Expr $expr = null, array $attributes = []) {
23
+		$this->attributes = $attributes;
24
+		$this->expr = $expr;
25
+	}
26 26
 
27
-    public function getSubNodeNames() : array {
28
-        return ['expr'];
29
-    }
27
+	public function getSubNodeNames() : array {
28
+		return ['expr'];
29
+	}
30 30
     
31
-    public function getType() : string {
32
-        return 'Expr_Exit';
33
-    }
31
+	public function getType() : string {
32
+		return 'Expr_Exit';
33
+	}
34 34
 }
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;
6 6
 
7
-class Exit_ extends Expr
8
-{
7
+class Exit_ extends Expr {
9 8
     /* For use in "kind" attribute */
10 9
     const KIND_EXIT = 1;
11 10
     const KIND_DIE = 2;
Please login to merge, or discard this patch.
php-scoper/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast.php 2 patches
Indentation   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -6,21 +6,21 @@
 block discarded – undo
6 6
 
7 7
 abstract class Cast extends Expr
8 8
 {
9
-    /** @var Expr Expression */
10
-    public $expr;
9
+	/** @var Expr Expression */
10
+	public $expr;
11 11
 
12
-    /**
13
-     * Constructs a cast node.
14
-     *
15
-     * @param Expr  $expr       Expression
16
-     * @param array $attributes Additional attributes
17
-     */
18
-    public function __construct(Expr $expr, array $attributes = []) {
19
-        $this->attributes = $attributes;
20
-        $this->expr = $expr;
21
-    }
12
+	/**
13
+	 * Constructs a cast node.
14
+	 *
15
+	 * @param Expr  $expr       Expression
16
+	 * @param array $attributes Additional attributes
17
+	 */
18
+	public function __construct(Expr $expr, array $attributes = []) {
19
+		$this->attributes = $attributes;
20
+		$this->expr = $expr;
21
+	}
22 22
 
23
-    public function getSubNodeNames() : array {
24
-        return ['expr'];
25
-    }
23
+	public function getSubNodeNames() : array {
24
+		return ['expr'];
25
+	}
26 26
 }
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;
6 6
 
7
-abstract class Cast extends Expr
8
-{
7
+abstract class Cast extends Expr {
9 8
     /** @var Expr Expression */
10 9
     public $expr;
11 10
 
Please login to merge, or discard this patch.
php-scoper/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/ClosureUse.php 2 patches
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -6,29 +6,29 @@
 block discarded – undo
6 6
 
7 7
 class ClosureUse extends Expr
8 8
 {
9
-    /** @var Expr\Variable Variable to use */
10
-    public $var;
11
-    /** @var bool Whether to use by reference */
12
-    public $byRef;
9
+	/** @var Expr\Variable Variable to use */
10
+	public $var;
11
+	/** @var bool Whether to use by reference */
12
+	public $byRef;
13 13
 
14
-    /**
15
-     * Constructs a closure use node.
16
-     *
17
-     * @param Expr\Variable $var        Variable to use
18
-     * @param bool          $byRef      Whether to use by reference
19
-     * @param array         $attributes Additional attributes
20
-     */
21
-    public function __construct(Expr\Variable $var, bool $byRef = false, array $attributes = []) {
22
-        $this->attributes = $attributes;
23
-        $this->var = $var;
24
-        $this->byRef = $byRef;
25
-    }
14
+	/**
15
+	 * Constructs a closure use node.
16
+	 *
17
+	 * @param Expr\Variable $var        Variable to use
18
+	 * @param bool          $byRef      Whether to use by reference
19
+	 * @param array         $attributes Additional attributes
20
+	 */
21
+	public function __construct(Expr\Variable $var, bool $byRef = false, array $attributes = []) {
22
+		$this->attributes = $attributes;
23
+		$this->var = $var;
24
+		$this->byRef = $byRef;
25
+	}
26 26
 
27
-    public function getSubNodeNames() : array {
28
-        return ['var', 'byRef'];
29
-    }
27
+	public function getSubNodeNames() : array {
28
+		return ['var', 'byRef'];
29
+	}
30 30
     
31
-    public function getType() : string {
32
-        return 'Expr_ClosureUse';
33
-    }
31
+	public function getType() : string {
32
+		return 'Expr_ClosureUse';
33
+	}
34 34
 }
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;
6 6
 
7
-class ClosureUse extends Expr
8
-{
7
+class ClosureUse extends Expr {
9 8
     /** @var Expr\Variable Variable to use */
10 9
     public $var;
11 10
     /** @var bool Whether to use by reference */
Please login to merge, or discard this patch.