Skip to content

Commit

Permalink
namespace bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
emnsen committed Jun 16, 2018
1 parent 2027a6b commit efb99eb
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Command/AppServerReloadCommand.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace DPX\SwoolerServerBundle\Command;
namespace DPX\SwooleServerBundle\Command;

use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputInterface;
Expand Down
2 changes: 1 addition & 1 deletion Command/AppServerStartCommand.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace DPX\SwoolerServerBundle\Command;
namespace DPX\SwooleServerBundle\Command;

use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputInterface;
Expand Down
2 changes: 1 addition & 1 deletion Command/AppServerStopCommand.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace DPX\SwoolerServerBundle\Command;
namespace DPX\SwooleServerBundle\Command;

use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputInterface;
Expand Down
2 changes: 1 addition & 1 deletion DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace DPX\SwoolerServerBundle\DependencyInjection;
namespace DPX\SwooleServerBundle\DependencyInjection;

use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\ConfigurationInterface;
Expand Down
2 changes: 1 addition & 1 deletion DependencyInjection/SwooleServerExtension.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace DPX\SwoolerServerBundle\DependencyInjection;
namespace DPX\SwooleServerBundle\DependencyInjection;

use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder;
Expand Down
2 changes: 1 addition & 1 deletion Exception/SwooleException.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace DPX\SwoolerServerBundle\Exception;
namespace DPX\SwooleServerBundle\Exception;

class SwooleException extends \Exception
{
Expand Down
2 changes: 1 addition & 1 deletion Resources/config/services.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">

<services>
<service id="app.swoole.server" class="DPX\SwoolerServerBundle\Swoole\Server" public="true">
<service id="app.swoole.server" class="DPX\SwooleServerBundle\Swoole\Server" public="true">
<argument/>
<argument/>
<argument/>
Expand Down
2 changes: 1 addition & 1 deletion Swoole/Request.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace DPX\SwoolerServerBundle\Swoole;
namespace DPX\SwooleServerBundle\Swoole;

use Symfony\Component\HttpFoundation\Request as SymfonyRequest;

Expand Down
2 changes: 1 addition & 1 deletion Swoole/Response.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace DPX\SwoolerServerBundle\Swoole;
namespace DPX\SwooleServerBundle\Swoole;

class Response
{
Expand Down
6 changes: 3 additions & 3 deletions Swoole/Server.php
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<?php

namespace DPX\SwoolerServerBundle\Swoole;
namespace DPX\SwooleServerBundle\Swoole;

use DPX\SwoolerServerBundle\Exception\SwooleException;
use DPX\SwooleServerBundle\Exception\SwooleException;
use Swoole\Process;
use Symfony\Component\HttpKernel\Kernel;
use Symfony\Component\HttpKernel\KernelInterface;

/**
* Class Server
*
* @package \DPX\SwoolerServerBundle\Swoole
* @package \DPX\SwooleServerBundle\Swoole
*/
class Server
{
Expand Down
2 changes: 1 addition & 1 deletion SwooleServerBundle.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace DPX\SwoolerServerBundle;
namespace DPX\SwooleServerBundle;

use Symfony\Component\HttpKernel\Bundle\Bundle;

Expand Down

0 comments on commit efb99eb

Please sign in to comment.