-
Notifications
You must be signed in to change notification settings - Fork 3
Shorthand priority annotations #11
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
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace ApiClients\Foundation\Middleware\Annotation; | ||
|
||
use ApiClients\Foundation\Middleware\Priority as MiddlewarePriority; | ||
|
||
/** | ||
* @Annotation | ||
* @Target({"METHOD"}) | ||
*/ | ||
final class Early implements PriorityInterface | ||
{ | ||
/** | ||
* @return int | ||
*/ | ||
public function priority(): int | ||
{ | ||
return MiddlewarePriority::EARLY; | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace ApiClients\Foundation\Middleware\Annotation; | ||
|
||
use ApiClients\Foundation\Middleware\Priority as MiddlewarePriority; | ||
|
||
/** | ||
* @Annotation | ||
* @Target({"METHOD"}) | ||
*/ | ||
final class First implements PriorityInterface | ||
{ | ||
/** | ||
* @return int | ||
*/ | ||
public function priority(): int | ||
{ | ||
return MiddlewarePriority::FIRST; | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace ApiClients\Foundation\Middleware\Annotation; | ||
|
||
use ApiClients\Foundation\Middleware\Priority as MiddlewarePriority; | ||
|
||
/** | ||
* @Annotation | ||
* @Target({"METHOD"}) | ||
*/ | ||
final class Last implements PriorityInterface | ||
{ | ||
/** | ||
* @return int | ||
*/ | ||
public function priority(): int | ||
{ | ||
return MiddlewarePriority::LAST; | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace ApiClients\Foundation\Middleware\Annotation; | ||
|
||
use ApiClients\Foundation\Middleware\Priority as MiddlewarePriority; | ||
|
||
/** | ||
* @Annotation | ||
* @Target({"METHOD"}) | ||
*/ | ||
final class Late implements PriorityInterface | ||
{ | ||
/** | ||
* @return int | ||
*/ | ||
public function priority(): int | ||
{ | ||
return MiddlewarePriority::LATE; | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace ApiClients\Foundation\Middleware\Annotation; | ||
|
||
interface PriorityInterface | ||
{ | ||
/** | ||
* @return int | ||
*/ | ||
public function priority(): int; | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace ApiClients\Foundation\Middleware\Annotation; | ||
|
||
use ApiClients\Foundation\Middleware\Priority as MiddlewarePriority; | ||
|
||
/** | ||
* @Annotation | ||
* @Target({"METHOD"}) | ||
*/ | ||
final class Second implements PriorityInterface | ||
{ | ||
/** | ||
* @return int | ||
*/ | ||
public function priority(): int | ||
{ | ||
return MiddlewarePriority::SECOND; | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace ApiClients\Foundation\Middleware\Annotation; | ||
|
||
use ApiClients\Foundation\Middleware\Priority as MiddlewarePriority; | ||
|
||
/** | ||
* @Annotation | ||
* @Target({"METHOD"}) | ||
*/ | ||
final class SecondLast implements PriorityInterface | ||
{ | ||
/** | ||
* @return int | ||
*/ | ||
public function priority(): int | ||
{ | ||
return MiddlewarePriority::SECOND_LAST; | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace ApiClients\Foundation\Middleware\Annotation; | ||
|
||
use ApiClients\Foundation\Middleware\Priority as MiddlewarePriority; | ||
|
||
/** | ||
* @Annotation | ||
* @Target({"METHOD"}) | ||
*/ | ||
final class Third implements PriorityInterface | ||
{ | ||
/** | ||
* @return int | ||
*/ | ||
public function priority(): int | ||
{ | ||
return MiddlewarePriority::THIRD; | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace ApiClients\Foundation\Middleware\Annotation; | ||
|
||
use ApiClients\Foundation\Middleware\Priority as MiddlewarePriority; | ||
|
||
/** | ||
* @Annotation | ||
* @Target({"METHOD"}) | ||
*/ | ||
final class ThirdLast implements PriorityInterface | ||
{ | ||
/** | ||
* @return int | ||
*/ | ||
public function priority(): int | ||
{ | ||
return MiddlewarePriority::THIRD_LAST; | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<?php declare(strict_types=1); | ||
|
||
namespace ApiClients\Tests\Foundation\Middleware\TestMiddlewares; | ||
|
||
use ApiClients\Foundation\Middleware\Annotation\Early; | ||
use ApiClients\Foundation\Middleware\Annotation\First; | ||
use ApiClients\Foundation\Middleware\Annotation\Late; | ||
use ApiClients\Foundation\Middleware\DefaultPriorityTrait; | ||
use ApiClients\Foundation\Middleware\MiddlewareInterface; | ||
use Psr\Http\Message\RequestInterface; | ||
use Psr\Http\Message\ResponseInterface; | ||
use React\Promise\CancellablePromiseInterface; | ||
use Throwable; | ||
use function React\Promise\reject; | ||
use function React\Promise\resolve; | ||
|
||
class ThreeMiddleware implements MiddlewareInterface | ||
{ | ||
use DefaultPriorityTrait; | ||
|
||
private $calls = []; | ||
|
||
/** | ||
* @return array | ||
*/ | ||
public function getCalls(): array | ||
{ | ||
return $this->calls; | ||
} | ||
|
||
/** | ||
* @param RequestInterface $request | ||
* @param array $options | ||
* @return CancellablePromiseInterface | ||
* @First() | ||
*/ | ||
public function pre( | ||
RequestInterface $request, | ||
array $options = [], | ||
string $transactionId = null | ||
): CancellablePromiseInterface { | ||
usleep(100); | ||
$this->calls[(string)microtime(true)] = __CLASS__ . ':pre'; | ||
|
||
return resolve($request); | ||
} | ||
|
||
/** | ||
* @param ResponseInterface $response | ||
* @param array $options | ||
* @return CancellablePromiseInterface | ||
* @Late() | ||
*/ | ||
public function post( | ||
ResponseInterface $response, | ||
array $options = [], | ||
string $transactionId = null | ||
): CancellablePromiseInterface { | ||
usleep(100); | ||
$this->calls[(string)microtime(true)] = __CLASS__ . ':post'; | ||
|
||
return resolve($response); | ||
} | ||
|
||
/** | ||
* @param Throwable $throwable | ||
* @param array $options | ||
* @return CancellablePromiseInterface | ||
* @Early() | ||
*/ | ||
public function error( | ||
Throwable $throwable, | ||
array $options = [], | ||
string $transactionId = null | ||
): CancellablePromiseInterface { | ||
usleep(100); | ||
$this->calls[(string)microtime(true)] = __CLASS__ . ':error'; | ||
|
||
return reject($throwable); | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Line exceeds 120 characters; contains 125 characters