Skip to content

Commit 48d308c

Browse files
committed
style/spacing fixes
1 parent 9488551 commit 48d308c

File tree

3 files changed

+1
-9
lines changed

3 files changed

+1
-9
lines changed

src/Enums/HttpMethod.php

-4
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,8 @@
77
enum HttpMethod: string
88
{
99
case DELETE = 'DELETE';
10-
1110
case GET = 'GET';
12-
1311
case PATCH = 'PATCH';
14-
1512
case POST = 'POST';
16-
1713
case PUT = 'PUT';
1814
}

tools/src/Entity.php

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ public function getDirectory(ClassType $classType): string
3030
'/',
3131
);
3232
}
33+
3334
// TODO sep. dir for Tests
3435
return rtrim(
3536
$this->projectRoot .

tools/src/Enums/ClassType.php

-5
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,9 @@
77
enum ClassType: string
88
{
99
case MODEL = 'Model';
10-
1110
case COLLECTION = 'Collection';
12-
1311
case REQUEST = 'Request';
14-
1512
case RESULT = 'Result';
16-
1713
case TEST = 'Test';
18-
1914
case PROXY = 'Proxy';
2015
}

0 commit comments

Comments
 (0)