Skip to content

Commit 878df13

Browse files
cs fixes
1 parent 297980f commit 878df13

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

tests/Unit/AQL/DateFunctionsTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,5 +116,4 @@ public function testDateFormat()
116116
$qb->return($qb->dateFormat(1399472349522, "%q/%yyyy"));
117117
self::assertEquals('RETURN DATE_FORMAT(1399472349522, @' . $qb->getQueryId() . '_1)', $qb->get()->query);
118118
}
119-
120119
}

tests/Unit/AQL/StringFunctionsTest.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ public function testConcat()
1515
{
1616
$qb = new QueryBuilder();
1717
$qb->return($qb->concat('string', 'this', 'together'));
18-
self::assertEquals('RETURN CONCAT(@' . $qb->getQueryId() . '_1, @' . $qb->getQueryId() . '_2, @' . $qb->getQueryId() . '_3)', $qb->get()->query);
18+
self::assertEquals(
19+
'RETURN CONCAT(@'
20+
. $qb->getQueryId() . '_1, @'
21+
. $qb->getQueryId() . '_2, @'
22+
. $qb->getQueryId() . '_3)',
23+
$qb->get()->query
24+
);
1925
}
2026
}

0 commit comments

Comments
 (0)