Skip to content

Commit 6f6f4f3

Browse files
patinthehatgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 00b578f commit 6f6f4f3

3 files changed

Lines changed: 16 additions & 16 deletions

File tree

src/Results/Nodes/BinaryOperationNode.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ public function __construct(BinaryOp $node)
2929
$this->left = ExpressionTransformer::parserNodeToResultNode($node->left);
3030
$this->right = ExpressionTransformer::parserNodeToResultNode($node->right);
3131

32-
// $this->value = '';
33-
// if (property_exists($this->left, 'value') && property_exists($this->right, 'value')) {
32+
// $this->value = '';
33+
// if (property_exists($this->left, 'value') && property_exists($this->right, 'value')) {
3434
$leftValue = '';
3535
$rightValue = '';
3636

tests/data/file1.php

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<?php
2-
ray('12345');
2+
ray('12345');
33

4-
printf("%s\n", strtolower('TEST'));
4+
printf("%s\n", strtolower('TEST'));
55

6-
echo strtoupper('test') . PHP_EOL;
6+
echo strtoupper('test') . PHP_EOL;
77

8-
function test1()
9-
{
10-
Ray::rateLimiter()->count(5);
11-
}
8+
function test1()
9+
{
10+
Ray::rateLimiter()->count(5);
11+
}
1212

13-
$obj = new MyClass();
13+
$obj = new MyClass();
1414

15-
$obj->withData([123])->send();
15+
$obj->withData([123])->send();
1616

17-
$isDisabled = AnotherClass::disabled();
18-
$isEnabled = AnotherClass::enabled();
17+
$isDisabled = AnotherClass::disabled();
18+
$isEnabled = AnotherClass::enabled();
1919

20-
$test = Ray::$someProperty->enable();
20+
$test = Ray::$someProperty->enable();

tests/data/file4.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?php
22

3-
$checkInResponse = CheckInResponse::whereCheckInRequestUuid($requestUuid)::whereSessionRegistrationUuid($sessionRegistration->uuid)
4-
->firstOrFail();
3+
$checkInResponse = CheckInResponse::whereCheckInRequestUuid($requestUuid)::whereSessionRegistrationUuid($sessionRegistration->uuid)
4+
->firstOrFail();

0 commit comments

Comments
 (0)