| Total Complexity | 4 |
| Total Lines | 54 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class ClientCertificatesController extends AuthController |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * The ClientCertificateRepository instance. |
||
| 14 | * |
||
| 15 | * @var \Gameap\Repositories\ClientCertificateRepository |
||
| 16 | */ |
||
| 17 | protected $repository; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Create a new ClientCertificatesController instance. |
||
| 21 | * |
||
| 22 | * @param \Gameap\Repositories\ClientCertificateRepository $repository |
||
| 23 | */ |
||
| 24 | public function __construct(ClientCertificateRepository $repository) |
||
| 25 | { |
||
| 26 | parent::__construct(); |
||
| 27 | |||
| 28 | $this->repository = $repository; |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Display a listing of the resource. |
||
| 33 | * |
||
| 34 | * @return \Illuminate\View\View |
||
| 35 | */ |
||
| 36 | public function list() |
||
| 37 | { |
||
| 38 | $clientCertificates = $this->repository->getAll(99999); |
||
| 39 | |||
| 40 | return $clientCertificates->map(function ($item) { |
||
| 41 | return $item->only([ |
||
| 42 | 'id', |
||
| 43 | 'fingerprint', |
||
| 44 | 'expires', |
||
| 45 | 'info', |
||
| 46 | ]); |
||
| 47 | }); |
||
| 48 | } |
||
| 49 | |||
| 50 | public function store(ClientCertificatesRequest $request) |
||
| 55 | } |
||
| 56 | |||
| 57 | public function destroy($id) |
||
| 64 | } |
||
| 65 | } |
Let?s assume that you have a directory layout like this:
. |-- OtherDir | |-- Bar.php | `-- Foo.php `-- SomeDir `-- Foo.phpand let?s assume the following content of
Bar.php:If both files
OtherDir/Foo.phpandSomeDir/Foo.phpare loaded in the same runtime, you will see a PHP error such as the following:PHP Fatal error: Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.phpHowever, as
OtherDir/Foo.phpdoes not necessarily have to be loaded and the error is only triggered if it is loaded beforeOtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias: