Passed
Push — develop ( 9b3bb3...7f9ecb )
by nguereza
02:57
created
src/Exception/UnknownVariableException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,6 +38,5 @@
 block discarded – undo
38 38
  * @class UnknownVariableException
39 39
  * @package Platine\Expression\Exception
40 40
  */
41
-class UnknownVariableException extends ExpressionException
42
-{
41
+class UnknownVariableException extends ExpressionException {
43 42
 }
Please login to merge, or discard this patch.
src/Exception/IncorrectNumberOfFunctionParametersException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,6 +38,5 @@
 block discarded – undo
38 38
  * @class IncorrectNumberOfFunctionParametersException
39 39
  * @package Platine\Expression\Exception
40 40
  */
41
-class IncorrectNumberOfFunctionParametersException extends ExpressionException
42
-{
41
+class IncorrectNumberOfFunctionParametersException extends ExpressionException {
43 42
 }
Please login to merge, or discard this patch.
src/Exception/IncorrectExpressionException.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,6 +38,5 @@
 block discarded – undo
38 38
  * @class IncorrectExpressionException
39 39
  * @package Platine\Expression\Exception
40 40
  */
41
-class IncorrectExpressionException extends ExpressionException
42
-{
41
+class IncorrectExpressionException extends ExpressionException {
43 42
 }
Please login to merge, or discard this patch.
src/Operator.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@
 block discarded – undo
55 55
  * @class Operator
56 56
  * @package Platine\Expression
57 57
  */
58
-class Operator
59
-{
58
+class Operator {
60 59
     /**
61 60
      * Number of function argument
62 61
      * @var int
Please login to merge, or discard this patch.
src/CustomFunction.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -55,8 +55,7 @@  discard block
 block discarded – undo
55 55
  * @class CustomFunction
56 56
  * @package Platine\Expression
57 57
  */
58
-class CustomFunction
59
-{
58
+class CustomFunction {
60 59
     /**
61 60
      * Number of function argument required
62 61
      * @var int
@@ -68,8 +67,7 @@  discard block
 block discarded – undo
68 67
      * @param string $name The function name
69 68
      * @param callable $function The function to be called
70 69
      */
71
-    public function __construct(protected string $name, protected $function)
72
-    {
70
+    public function __construct(protected string $name, protected $function) {
73 71
         $this->name = $name;
74 72
         $this->function = $function;
75 73
 
Please login to merge, or discard this patch.