Skip to content

Commit

Permalink
move remaining files from Core to Helpers folder
Browse files Browse the repository at this point in the history
  • Loading branch information
pavarnos committed Aug 14, 2018
1 parent f9ce8d4 commit dac4028
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Threema/MsgApi/Encryptor/AbstractEncryptor.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@

namespace Threema\MsgApi\Encryptor;

use Threema\Core\AssocArray;
use Threema\MsgApi\Commands\Results\UploadFileResult;
use Threema\MsgApi\Exceptions\BadMessageException;
use Threema\MsgApi\Exceptions\DecryptionFailedException;
use Threema\MsgApi\Exceptions\UnsupportedMessageTypeException;
use Threema\MsgApi\Helpers\AssocArray;
use Threema\MsgApi\Helpers\EncryptResult;
use Threema\MsgApi\Helpers\FileAnalysisResult;
use Threema\MsgApi\Helpers\KeyPair;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @copyright Copyright (c) 2015-2016 Threema GmbH
*/

namespace Threema\Core;
namespace Threema\MsgApi\Helpers;

use Threema\MsgApi\Exceptions\Exception;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @copyright Copyright (c) 2015-2016 Threema GmbH
*/

namespace Threema\Core;
namespace Threema\MsgApi\Helpers;

class Url
{
Expand Down
2 changes: 1 addition & 1 deletion src/Threema/MsgApi/HttpDriver/CurlHttpDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@

namespace Threema\MsgApi\HttpDriver;

use Threema\Core\Url;
use Threema\MsgApi\Commands\CommandInterface;
use Threema\MsgApi\Commands\JsonCommandInterface;
use Threema\MsgApi\Commands\MultiPartCommandInterface;
use Threema\MsgApi\Commands\Results\Result;
use Threema\MsgApi\Constants;
use Threema\MsgApi\Exceptions\HttpException;
use Threema\MsgApi\Helpers\Url;

/**
*/
Expand Down

0 comments on commit dac4028

Please sign in to comment.