Skip to content

Commit 0c95e4c

Browse files
committed
Move files to "src/"
1 parent 0b4c732 commit 0c95e4c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ example.png: example.dot
44

55
fix-style:
66
vendor/bin/indent --tabs composer.json
7-
vendor/bin/indent --tabs LifecycleBehavior.php
8-
vendor/bin/indent --tabs StatusChangeNotAllowedException.php
7+
vendor/bin/indent --tabs src/LifecycleBehavior.php
8+
vendor/bin/indent --tabs src/StatusChangeNotAllowedException.php
99

1010
install:
1111
composer install --prefer-dist --no-interaction

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ and add a validation error in case state has changed in a way that is not allowe
7575
## Program flow validation
7676

7777
The behavior may also be used to validate status changes in program flow. This is different to user input validation as
78-
described above, because program flow will be aborted by an [exception](StatusChangeNotAllowedException.php) in this case.
78+
described above, because program flow will be aborted by an [exception](src/StatusChangeNotAllowedException.php) in this case.
7979
For user input, the recipient of the error message is the user, when status is not changed by the user,
8080
the recipient of the error is the developer.
8181

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727
},
2828
"autoload": {
2929
"psr-4": {
30-
"cebe\\lifecycle\\": ""
30+
"cebe\\lifecycle\\": "src/"
3131
}
3232
},
3333
"extra": {
3434
"branch-alias": {
35-
"dev-master": "1.0.x-dev"
35+
"dev-master": "2.0.x-dev"
3636
}
3737
}
3838
}
File renamed without changes.

0 commit comments

Comments
 (0)