Skip to content

Commit f4f83a3

Browse files
committed
chore: fmt
1 parent f7dfee2 commit f4f83a3

4 files changed

Lines changed: 41 additions & 41 deletions

File tree

composer.lock

Lines changed: 38 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Validator/ArrayList.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function getDescription(): string
4646
{
4747
$msg = 'Value must a valid array';
4848

49-
if($this->length > 0) {
49+
if ($this->length > 0) {
5050
$msg .= ' no longer than ' . $this->length . ' items';
5151
}
5252

tests/ResponseTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function testCanSetStatus()
3535

3636
try {
3737
$this->response->setStatusCode(0); // Unknown status code
38-
} catch(\Exception $e) {
38+
} catch (\Exception $e) {
3939
$this->assertInstanceOf('\Exception', $e);
4040

4141
return;

tests/ViewTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function testCanRenderHtml()
6767
$this->view->setRendered(false);
6868
$this->view->setPath('just-a-broken-string.phtml');
6969
$this->view->render();
70-
} catch(\Exception $e) {
70+
} catch (\Exception $e) {
7171
return;
7272
}
7373

0 commit comments

Comments
 (0)