Skip to content

Condense namespace. #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 20, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"autoload": {
"psr-4": {
"Psr\\Event\\Dispatcher\\": "src/"
"Psr\\EventDispatcher\\": "src/"
}
},
"extra": {
Expand Down
2 changes: 1 addition & 1 deletion src/EventErrorInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

namespace Psr\Event\Dispatcher;
namespace Psr\EventDispatcher;

/**
* An object that contains information about an error triggered by Event handling.
Expand Down
2 changes: 1 addition & 1 deletion src/EventInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

namespace Psr\Event\Dispatcher;
namespace Psr\EventDispatcher;

/**
* Marker interface indicating an event instance.
Expand Down
2 changes: 1 addition & 1 deletion src/ListenerProviderInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

namespace Psr\Event\Dispatcher;
namespace Psr\EventDispatcher;

/**
* Mapper from an event to the listeners that are applicable to that event.
Expand Down
2 changes: 1 addition & 1 deletion src/MessageInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

namespace Psr\Event\Dispatcher;
namespace Psr\EventDispatcher;


/**
Expand Down
2 changes: 1 addition & 1 deletion src/MessageNotifierInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

namespace Psr\Event\Dispatcher;
namespace Psr\EventDispatcher;

/**
* Defines a notifier for message events.
Expand Down
2 changes: 1 addition & 1 deletion src/StoppableTaskInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

namespace Psr\Event\Dispatcher;
namespace Psr\EventDispatcher;

/**
* Event that can stop propagation to undispatched listeners.
Expand Down
2 changes: 1 addition & 1 deletion src/TaskInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

namespace Psr\Event\Dispatcher;
namespace Psr\EventDispatcher;

/**
* This is a marker interface used to identify task events.
Expand Down
2 changes: 1 addition & 1 deletion src/TaskProcessorInterface.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
declare(strict_types=1);

namespace Psr\Event\Dispatcher;
namespace Psr\EventDispatcher;

/**
* Defines a processor for tasks events.
Expand Down