Skip to content

Commit

Permalink
Change Entity Namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
mostafakhudair committed Apr 16, 2021
1 parent 111f740 commit 4db0ffc
Show file tree
Hide file tree
Showing 36 changed files with 808 additions and 721 deletions.
2 changes: 1 addition & 1 deletion system/Commands/Generators/Views/entity.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace {namespace};

use CodeIgniter\Entity;
use CodeIgniter\Entity\Entity;

class {class} extends Entity
{
Expand Down
2 changes: 1 addition & 1 deletion system/Database/BaseResult.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace CodeIgniter\Database;

use CodeIgniter\Entity;
use CodeIgniter\Entity\Entity;

/**
* Class BaseResult
Expand Down
2 changes: 1 addition & 1 deletion system/Database/MySQLi/Result.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
namespace CodeIgniter\Database\MySQLi;

use CodeIgniter\Database\BaseResult;
use CodeIgniter\Entity;
use CodeIgniter\Entity\Entity;
use stdClass;

/**
Expand Down
2 changes: 1 addition & 1 deletion system/Database/Postgre/Result.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
namespace CodeIgniter\Database\Postgre;

use CodeIgniter\Database\BaseResult;
use CodeIgniter\Entity;
use CodeIgniter\Entity\Entity;
use stdClass;

/**
Expand Down
2 changes: 1 addition & 1 deletion system/Database/SQLSRV/Result.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
namespace CodeIgniter\Database\SQLSRV;

use CodeIgniter\Database\BaseResult;
use CodeIgniter\Entity;
use CodeIgniter\Entity\Entity;
use stdClass;

/**
Expand Down
2 changes: 1 addition & 1 deletion system/Database/SQLite3/Result.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
use Closure;
use CodeIgniter\Database\BaseResult;
use CodeIgniter\Database\Exceptions\DatabaseException;
use CodeIgniter\Entity;
use CodeIgniter\Entity\Entity;
use stdClass;

/**
Expand Down
Loading

0 comments on commit 4db0ffc

Please sign in to comment.