Skip to content

Commit cdb6188

Browse files
jkapuscik2jkapuscik2
authored andcommitted
Switched to composer autoloading
1 parent 62b06c1 commit cdb6188

File tree

130 files changed

+218
-181
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+218
-181
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
structural/adapter/Config.php
1+
structural/Adapter/Config.php
22
vendor
33
.idea
44
.env

README.md

Lines changed: 22 additions & 22 deletions

autoloader.php

Lines changed: 0 additions & 6 deletions
This file was deleted.

behavioral/chain_of_responsibility/ApiMiddleware.php renamed to behavioral/ChainOfResponsibility/ApiMiddleware.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace behavioral\chain_of_responsibility;
3+
namespace Behavioral\ChainOfResponsibility;
44

55
class ApiMiddleware extends Middleware {
66

behavioral/chain_of_responsibility/App.php renamed to behavioral/ChainOfResponsibility/App.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace behavioral\chain_of_responsibility;
3+
namespace Behavioral\ChainOfResponsibility;
44

55
final class App {
66

behavioral/chain_of_responsibility/GetMiddleware.php renamed to behavioral/ChainOfResponsibility/GetMiddleware.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace behavioral\chain_of_responsibility;
3+
namespace Behavioral\ChainOfResponsibility;
44

55
class GetMiddleware extends Middleware {
66

behavioral/chain_of_responsibility/Middleware.php renamed to behavioral/ChainOfResponsibility/Middleware.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace behavioral\chain_of_responsibility;
3+
namespace Behavioral\ChainOfResponsibility;
44

55
abstract class Middleware {
66

Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace behavioral\chain_of_responsibility;
3+
namespace Behavioral\ChainOfResponsibility;
44

55
class MiddlewareError extends \Error {
66
}

behavioral/chain_of_responsibility/Request.php renamed to behavioral/ChainOfResponsibility/Request.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace behavioral\chain_of_responsibility;
3+
namespace Behavioral\ChainOfResponsibility;
44

55
class Request {
66

behavioral/chain_of_responsibility/Response.php renamed to behavioral/ChainOfResponsibility/Response.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace behavioral\chain_of_responsibility;
3+
namespace Behavioral\ChainOfResponsibility;
44

55
class Response {
66

0 commit comments

Comments
 (0)