| 1 | <?php |
||
| 18 | final class RevokePreConfiguredAuthorizationCommandHandler |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var PreConfiguredAuthorizationRepositoryInterface |
||
| 22 | */ |
||
| 23 | private $preConfiguredAuthorizationRepository; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * RevokeClientCommandHandler constructor. |
||
| 27 | * |
||
| 28 | * @param PreConfiguredAuthorizationRepositoryInterface $preConfiguredAuthorizationRepository |
||
| 29 | */ |
||
| 30 | public function __construct(PreConfiguredAuthorizationRepositoryInterface $preConfiguredAuthorizationRepository) |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @param RevokePreConfiguredAuthorizationCommand $command |
||
| 37 | */ |
||
| 38 | public function handle(RevokePreConfiguredAuthorizationCommand $command) |
||
| 52 | } |
||
| 53 |
Very long variable names usually make code harder to read. It is therefore recommended not to make variable names too verbose.