Skip to content

Commit 75f0015

Browse files
committed
Added bitwise and, bitwise or, bitwise xor, left shift, right shift, binary number tokens
1 parent 589fbdb commit 75f0015

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+154
-140
lines changed

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
],
2727
"scripts": {
2828
"phpunit": "phpunit test",
29+
"psalm": "psalm",
2930
"tests": [
3031
"@phpunit"
3132
]

src/FormulaBugException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php
2-
32
declare(strict_types=1);
4-
53
namespace TimoLehnertz\formula;
64

75
/**

src/FormulaException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php
2-
32
declare(strict_types=1);
4-
53
namespace TimoLehnertz\formula;
64

75
/**

src/FormulaStatementException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php
2-
32
declare(strict_types=1);
4-
53
namespace TimoLehnertz\formula;
64

75
use TimoLehnertz\formula\statement\Statement;

src/ValueUnsetException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php
2-
32
declare(strict_types=1);
4-
53
namespace TimoLehnertz\formula;
64

75
/**

src/expression/ArgumentListExpression.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php
2-
32
declare(strict_types=1);
4-
53
namespace TimoLehnertz\formula\expression;
64

75
use TimoLehnertz\formula\FormulaBugException;

src/expression/ComplexOperatorExpression.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php
2-
32
declare(strict_types=1);
4-
53
namespace TimoLehnertz\formula\expression;
64

75
use TimoLehnertz\formula\nodes\Node;

src/expression/OperatorExpression.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php
2-
32
declare(strict_types=1);
4-
53
namespace TimoLehnertz\formula\expression;
64

75
use TimoLehnertz\formula\FormulaBugException;

src/nodes/Node.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php
2-
32
declare(strict_types=1);
4-
53
namespace TimoLehnertz\formula\nodes;
64

75
/**

src/nodes/NodeTree.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php
2-
32
declare(strict_types=1);
4-
53
namespace TimoLehnertz\formula\nodes;
64

75
/**

0 commit comments

Comments
 (0)