Completed
Branch develop (eb876f)
by
unknown
21:14
created
php-imap/vendor/nesbot/carbon/src/Carbon/Exceptions/NotAPeriodException.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,5 +15,5 @@
 block discarded – undo
15 15
 
16 16
 class NotAPeriodException extends BaseInvalidArgumentException implements InvalidArgumentException
17 17
 {
18
-    //
18
+	//
19 19
 }
Please login to merge, or discard this patch.
vendor/nesbot/carbon/src/Carbon/Exceptions/UnknownMethodException.php 2 patches
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -16,34 +16,34 @@
 block discarded – undo
16 16
 
17 17
 class UnknownMethodException extends BaseBadMethodCallException implements BadMethodCallException
18 18
 {
19
-    /**
20
-     * The method.
21
-     *
22
-     * @var string
23
-     */
24
-    protected $method;
19
+	/**
20
+	 * The method.
21
+	 *
22
+	 * @var string
23
+	 */
24
+	protected $method;
25 25
 
26
-    /**
27
-     * Constructor.
28
-     *
29
-     * @param string         $method
30
-     * @param int            $code
31
-     * @param Throwable|null $previous
32
-     */
33
-    public function __construct($method, $code = 0, Throwable $previous = null)
34
-    {
35
-        $this->method = $method;
26
+	/**
27
+	 * Constructor.
28
+	 *
29
+	 * @param string         $method
30
+	 * @param int            $code
31
+	 * @param Throwable|null $previous
32
+	 */
33
+	public function __construct($method, $code = 0, Throwable $previous = null)
34
+	{
35
+		$this->method = $method;
36 36
 
37
-        parent::__construct("Method $method does not exist.", $code, $previous);
38
-    }
37
+		parent::__construct("Method $method does not exist.", $code, $previous);
38
+	}
39 39
 
40
-    /**
41
-     * Get the method.
42
-     *
43
-     * @return string
44
-     */
45
-    public function getMethod(): string
46
-    {
47
-        return $this->method;
48
-    }
40
+	/**
41
+	 * Get the method.
42
+	 *
43
+	 * @return string
44
+	 */
45
+	public function getMethod(): string
46
+	{
47
+		return $this->method;
48
+	}
49 49
 }
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
     {
35 35
         $this->method = $method;
36 36
 
37
-        parent::__construct("Method $method does not exist.", $code, $previous);
37
+        parent::__construct("method $method does not exist.", $code, $previous);
38 38
     }
39 39
 
40 40
     /**
Please login to merge, or discard this patch.
vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidTimeZoneException.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,5 +15,5 @@
 block discarded – undo
15 15
 
16 16
 class InvalidTimeZoneException extends BaseInvalidArgumentException implements InvalidArgumentException
17 17
 {
18
-    //
18
+	//
19 19
 }
Please login to merge, or discard this patch.
vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidCastException.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,5 +15,5 @@
 block discarded – undo
15 15
 
16 16
 class InvalidCastException extends BaseInvalidArgumentException implements InvalidArgumentException
17 17
 {
18
-    //
18
+	//
19 19
 }
Please login to merge, or discard this patch.
php-imap/vendor/nesbot/carbon/src/Carbon/Exceptions/RuntimeException.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,5 +13,5 @@
 block discarded – undo
13 13
 
14 14
 interface RuntimeException extends Exception
15 15
 {
16
-    //
16
+	//
17 17
 }
Please login to merge, or discard this patch.
vendor/nesbot/carbon/src/Carbon/Exceptions/BadFluentSetterException.php 1 patch
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -16,34 +16,34 @@
 block discarded – undo
16 16
 
17 17
 class BadFluentSetterException extends BaseBadMethodCallException implements BadMethodCallException
18 18
 {
19
-    /**
20
-     * The setter.
21
-     *
22
-     * @var string
23
-     */
24
-    protected $setter;
19
+	/**
20
+	 * The setter.
21
+	 *
22
+	 * @var string
23
+	 */
24
+	protected $setter;
25 25
 
26
-    /**
27
-     * Constructor.
28
-     *
29
-     * @param string         $setter
30
-     * @param int            $code
31
-     * @param Throwable|null $previous
32
-     */
33
-    public function __construct($setter, $code = 0, Throwable $previous = null)
34
-    {
35
-        $this->setter = $setter;
26
+	/**
27
+	 * Constructor.
28
+	 *
29
+	 * @param string         $setter
30
+	 * @param int            $code
31
+	 * @param Throwable|null $previous
32
+	 */
33
+	public function __construct($setter, $code = 0, Throwable $previous = null)
34
+	{
35
+		$this->setter = $setter;
36 36
 
37
-        parent::__construct(sprintf("Unknown fluent setter '%s'", $setter), $code, $previous);
38
-    }
37
+		parent::__construct(sprintf("Unknown fluent setter '%s'", $setter), $code, $previous);
38
+	}
39 39
 
40
-    /**
41
-     * Get the setter.
42
-     *
43
-     * @return string
44
-     */
45
-    public function getSetter(): string
46
-    {
47
-        return $this->setter;
48
-    }
40
+	/**
41
+	 * Get the setter.
42
+	 *
43
+	 * @return string
44
+	 */
45
+	public function getSetter(): string
46
+	{
47
+		return $this->setter;
48
+	}
49 49
 }
Please login to merge, or discard this patch.
vendor/nesbot/carbon/src/Carbon/Exceptions/BadComparisonUnitException.php 1 patch
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -15,34 +15,34 @@
 block discarded – undo
15 15
 
16 16
 class BadComparisonUnitException extends UnitException
17 17
 {
18
-    /**
19
-     * The unit.
20
-     *
21
-     * @var string
22
-     */
23
-    protected $unit;
18
+	/**
19
+	 * The unit.
20
+	 *
21
+	 * @var string
22
+	 */
23
+	protected $unit;
24 24
 
25
-    /**
26
-     * Constructor.
27
-     *
28
-     * @param string         $unit
29
-     * @param int            $code
30
-     * @param Throwable|null $previous
31
-     */
32
-    public function __construct($unit, $code = 0, Throwable $previous = null)
33
-    {
34
-        $this->unit = $unit;
25
+	/**
26
+	 * Constructor.
27
+	 *
28
+	 * @param string         $unit
29
+	 * @param int            $code
30
+	 * @param Throwable|null $previous
31
+	 */
32
+	public function __construct($unit, $code = 0, Throwable $previous = null)
33
+	{
34
+		$this->unit = $unit;
35 35
 
36
-        parent::__construct("Bad comparison unit: '$unit'", $code, $previous);
37
-    }
36
+		parent::__construct("Bad comparison unit: '$unit'", $code, $previous);
37
+	}
38 38
 
39
-    /**
40
-     * Get the unit.
41
-     *
42
-     * @return string
43
-     */
44
-    public function getUnit(): string
45
-    {
46
-        return $this->unit;
47
-    }
39
+	/**
40
+	 * Get the unit.
41
+	 *
42
+	 * @return string
43
+	 */
44
+	public function getUnit(): string
45
+	{
46
+		return $this->unit;
47
+	}
48 48
 }
Please login to merge, or discard this patch.
vendor/nesbot/carbon/src/Carbon/Exceptions/UnknownSetterException.php 1 patch
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -16,34 +16,34 @@
 block discarded – undo
16 16
 
17 17
 class UnknownSetterException extends BaseInvalidArgumentException implements BadMethodCallException
18 18
 {
19
-    /**
20
-     * The setter.
21
-     *
22
-     * @var string
23
-     */
24
-    protected $setter;
19
+	/**
20
+	 * The setter.
21
+	 *
22
+	 * @var string
23
+	 */
24
+	protected $setter;
25 25
 
26
-    /**
27
-     * Constructor.
28
-     *
29
-     * @param string         $setter   setter name
30
-     * @param int            $code
31
-     * @param Throwable|null $previous
32
-     */
33
-    public function __construct($setter, $code = 0, Throwable $previous = null)
34
-    {
35
-        $this->setter = $setter;
26
+	/**
27
+	 * Constructor.
28
+	 *
29
+	 * @param string         $setter   setter name
30
+	 * @param int            $code
31
+	 * @param Throwable|null $previous
32
+	 */
33
+	public function __construct($setter, $code = 0, Throwable $previous = null)
34
+	{
35
+		$this->setter = $setter;
36 36
 
37
-        parent::__construct("Unknown setter '$setter'", $code, $previous);
38
-    }
37
+		parent::__construct("Unknown setter '$setter'", $code, $previous);
38
+	}
39 39
 
40
-    /**
41
-     * Get the setter.
42
-     *
43
-     * @return string
44
-     */
45
-    public function getSetter(): string
46
-    {
47
-        return $this->setter;
48
-    }
40
+	/**
41
+	 * Get the setter.
42
+	 *
43
+	 * @return string
44
+	 */
45
+	public function getSetter(): string
46
+	{
47
+		return $this->setter;
48
+	}
49 49
 }
Please login to merge, or discard this patch.
vendor/nesbot/carbon/src/Carbon/Exceptions/InvalidTypeException.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,5 +15,5 @@
 block discarded – undo
15 15
 
16 16
 class InvalidTypeException extends BaseInvalidArgumentException implements InvalidArgumentException
17 17
 {
18
-    //
18
+	//
19 19
 }
Please login to merge, or discard this patch.