Skip to content

Commit

Permalink
update namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
luisgros-fixeads committed Dec 4, 2016
1 parent 873613d commit 5b8cf5c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"autoload": {
"psr-4": {
"idrislab\\DockerServices\\": "src/"
"luisgros\\": "src/"
}
},
"extra": {
Expand Down
4 changes: 2 additions & 2 deletions src/Docker.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace idrislab\DockerServices;
namespace luisgros;

use Docker\DockerClient;
use Symfony\Component\Process\Exception\ProcessFailedException;
Expand All @@ -9,7 +9,7 @@
/**
* Class Docker
*
* @package idrislab\DockerServices
* @package luisgros
*/
class Docker
{
Expand Down
6 changes: 3 additions & 3 deletions src/Services.php → src/DockerServicesCommand.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?php

namespace idrislab\DockerServices;
namespace luisgros;

use Illuminate\Console\Command;
use Exception;

/**
* Class DockerServicesCommand
*
* @package idrislab\DockerServices
* @package luisgros
*/
class DockerServicesCommand extends Command
{
Expand Down Expand Up @@ -67,7 +67,7 @@ class DockerServicesCommand extends Command
/**
* Create a new command instance.
*
* @param \idrislab\DockerServices\Docker $docker
* @param \luisgros\Docker $docker
*/
public function __construct(Docker $docker)
{
Expand Down

0 comments on commit 5b8cf5c

Please sign in to comment.