@@ -55,7 +55,6 @@ |
||
55 | 55 | /** |
56 | 56 | * Indicates that application will be installed from custom git repository. |
57 | 57 | * |
58 | - * @param string $repository |
|
59 | 58 | * |
60 | 59 | * @return static |
61 | 60 | */ |
@@ -82,7 +82,7 @@ |
||
82 | 82 | /** |
83 | 83 | * Set resource ID. |
84 | 84 | * |
85 | - * @param int|string $resourceId |
|
85 | + * @param integer $resourceId |
|
86 | 86 | * |
87 | 87 | * @return static |
88 | 88 | */ |
@@ -131,7 +131,7 @@ |
||
131 | 131 | /** |
132 | 132 | * Get resource data. |
133 | 133 | * |
134 | - * @param string|int $key |
|
134 | + * @param string $key |
|
135 | 135 | * @param mixed $default = null |
136 | 136 | * |
137 | 137 | * @return mixed|null |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | /** |
93 | 93 | * Set payload data. |
94 | 94 | * |
95 | - * @param string|int $key |
|
95 | + * @param string $key |
|
96 | 96 | * @param mixed $value |
97 | 97 | * |
98 | 98 | * @return static |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | /** |
112 | 112 | * Return payload data. |
113 | 113 | * |
114 | - * @param string|int $key |
|
114 | + * @param string $key |
|
115 | 115 | * @param mixed $default = null |
116 | 116 | * |
117 | 117 | * @return mixed|null |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | /** |
129 | 129 | * Determines if payload has requried keys. |
130 | 130 | * |
131 | - * @param string|int|array $keys |
|
131 | + * @param string[] $keys |
|
132 | 132 | * |
133 | 133 | * @return bool |
134 | 134 | */ |
@@ -14,7 +14,7 @@ |
||
14 | 14 | */ |
15 | 15 | public function boot() |
16 | 16 | { |
17 | - $this->app->singleton(Forge::class, function ($app) { |
|
17 | + $this->app->singleton(Forge::class, function($app) { |
|
18 | 18 | $token = $app['config']->get('forge.token'); |
19 | 19 | $forge = new Forge(new ApiProvider($token)); |
20 | 20 |
@@ -31,7 +31,7 @@ |
||
31 | 31 | $credentials = $forge->credentials(); |
32 | 32 | |
33 | 33 | $headers = ['ID', 'Name', 'Provider']; |
34 | - $rows = collect($credentials)->map(function ($credential) { |
|
34 | + $rows = collect($credentials)->map(function($credential) { |
|
35 | 35 | return [$credential['id'], $credential['name'], $credential['type']]; |
36 | 36 | }); |
37 | 37 |