Skip to content
This repository was archived by the owner on Jun 29, 2022. It is now read-only.

Commit 1bfeedb

Browse files
justmd5StyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent e720200 commit 1bfeedb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Core/API.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ class API extends AbstractAPI
2828
* API constructor.
2929
*
3030
* @param Foundation $app
31-
* @param string $classify
32-
* @param array $filter
31+
* @param string $classify
32+
* @param array $filter
3333
*/
34-
public function __construct(Foundation $app,$classify, $filter)
34+
public function __construct(Foundation $app, $classify, $filter)
3535
{
3636
parent::__construct($app);
3737
$this->classify = $classify;

src/Core/ApplicationProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function register(Container $pimple)
2828
{
2929
array_walk($this->filterArray, function ($filter, $key) use (&$pimple) {
3030
$pimple[$key] = function ($pimple) use ($filter, $key) {
31-
return new API($pimple,$key, $filter);
31+
return new API($pimple, $key, $filter);
3232
};
3333
});
3434
}

0 commit comments

Comments
 (0)