Skip to content

Commit 69fb088

Browse files
authored
Applied fixes from StyleCI (#4)
1 parent 8d4d37a commit 69fb088

File tree

2 files changed

+8
-14
lines changed

2 files changed

+8
-14
lines changed

Diff for: src/HttplugManager.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -27,33 +27,33 @@ class HttplugManager extends Manager
2727
/**
2828
* Create a new HttplugManager instance.
2929
*
30-
* @param \Illuminate\Foundation\Application $app
31-
* @return void
30+
* @param \Illuminate\Foundation\Application $app
3231
*/
3332
public function __construct(Application $app)
3433
{
3534
$this->app = $app;
3635
}
3736

3837
/**
39-
* Get default driver
38+
* Get default driver.
4039
*
4140
* @return string
4241
*/
4342
public function getDefaultDriver()
4443
{
4544
return $this->app['config']['httplug.default'];
4645
}
47-
46+
4847
/**
49-
* @param string $name
48+
* @param string $name
49+
*
5050
* @return array
5151
*/
5252
protected function getConfig($name)
5353
{
5454
return $this->app['config']["httplug.adapters.{$name}"];
5555
}
56-
56+
5757
/**
5858
* @return \Http\Adapter\Guzzle6\Client
5959
*/

Diff for: src/HttplugServiceProvider.php

+2-8
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ public function boot()
3232

3333
/**
3434
* Register the application services.
35-
*
36-
* @return void
3735
*/
3836
public function register()
3937
{
@@ -42,9 +40,7 @@ public function register()
4240
}
4341

4442
/**
45-
* Register php-http interfaces to container
46-
*
47-
* @return void
43+
* Register php-http interfaces to container.
4844
*/
4945
protected function registerHttplugFactories()
5046
{
@@ -66,9 +62,7 @@ protected function registerHttplugFactories()
6662
}
6763

6864
/**
69-
* Register httplug to container
70-
*
71-
* @return void
65+
* Register httplug to container.
7266
*/
7367
protected function registerHttplug()
7468
{

0 commit comments

Comments
 (0)