Skip to content

Commit

Permalink
#6 #7 Change server to new namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
xandros15 committed May 27, 2016
1 parent 263ce41 commit 73049e6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion library/core/Bot.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Saya\Core\Client\Module;
use Saya\Core\Input\MessageInterface;
use Saya\Core\Output\Request;
use Saya\Core\Connection\Server;
use Saya\Core\Server\Server;
use Saya\Core\Input\Message;
use Saya\Core\Configuration\Configuration as Config;
use Saya\Components\Filter;
Expand Down
4 changes: 2 additions & 2 deletions library/core/output/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Saya\Core\Output;

use Saya\Core\Connection\ServerInfo;
use Saya\Core\Connection\ServerInterface;
use Saya\Core\Server\ServerInfo;
use Saya\Core\Server\ServerInterface;
use Saya\Core\Input\Input;
use Saya\Core\Input\MessageInterface;
use Saya\Core\IRC;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<?php

namespace Saya\Core\Connection;
namespace Saya\Core\Server;

use Exception;
use Saya\Core\Connection\Socket;
use Saya\Core\Input\Textline;
use Saya\Core\Input\Input;
use Saya\Components\Helper\ServerHelper;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Time: 17:54
*/

namespace Saya\Core\Connection;
namespace Saya\Core\Server;


interface ServerInfo
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Saya\Core\Connection;
namespace Saya\Core\Server;

interface ServerInterface
{
Expand Down

0 comments on commit 73049e6

Please sign in to comment.