Skip to content

Commit 3477582

Browse files
committed
Namespace are changed from app\core to hussainalihussain\phpmvclaravelclonecore
1 parent 59f911c commit 3477582

25 files changed

+65
-29
lines changed

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/core.iml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/php.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Application.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace app\core;
3+
namespace hussainalihussain\phpmvclaravelclonecore;
44

5-
use app\core\database\Database;
5+
use hussainalihussain\phpmvclaravelclonecore\database\Database;
66
use app\models\User;
77

88
class Application

Controller.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace app\core;
3+
namespace hussainalihussain\phpmvclaravelclonecore;
44

55
abstract class Controller
66
{

Middleware.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace app\core;
3+
namespace hussainalihussain\phpmvclaravelclonecore;
44

55
abstract class Middleware
66
{

Migration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace app\core;
3+
namespace hussainalihussain\phpmvclaravelclonecore;
44

5-
use app\core\database\Database;
5+
use hussainalihussain\phpmvclaravelclonecore\database\Database;
66

77
class Migration
88
{

Model.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
namespace app\core;
3+
namespace hussainalihussain\phpmvclaravelclonecore;
44

5-
use app\core\database\QueryBuilder;
5+
use hussainalihussain\phpmvclaravelclonecore\database\QueryBuilder;
66

77
abstract class Model extends QueryBuilder
88
{

0 commit comments

Comments
 (0)