Skip to content

Commit

Permalink
move MultiLogger to utils & mark as internal, Typos also internal
Browse files Browse the repository at this point in the history
  • Loading branch information
hrach committed May 7, 2020
1 parent efa389a commit b554e68
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
use Nextras\Dbal\QueryBuilder\QueryBuilder;
use Nextras\Dbal\Result\Result;
use Nextras\Dbal\Utils\LoggerHelper;
use Nextras\Dbal\Utils\MultiLogger;
use Nextras\Dbal\Utils\StrictObjectTrait;
use function array_unshift;
use function assert;
Expand Down
7 changes: 5 additions & 2 deletions src/MultiLogger.php → src/Utils/MultiLogger.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
<?php declare(strict_types = 1);

namespace Nextras\Dbal;
namespace Nextras\Dbal\Utils;

use Nextras\Dbal\ILogger;
use Nextras\Dbal\Result\Result;
use Nextras\Dbal\Utils\StrictObjectTrait;


/**
* @internal
*/
class MultiLogger implements ILogger
{
use StrictObjectTrait;
Expand Down
3 changes: 3 additions & 0 deletions src/Utils/Typos.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
namespace Nextras\Dbal\Utils;


/**
* @internal
*/
class Typos
{
use StrictObjectTrait;
Expand Down

0 comments on commit b554e68

Please sign in to comment.