Skip to content

Commit

Permalink
Merge pull request #113 from armanist/master
Browse files Browse the repository at this point in the history
Correcting namespaces
  • Loading branch information
armanist authored Feb 27, 2025
2 parents e485dc6 + cf0b296 commit f4625d2
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 20 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@
],
"test": "vendor/bin/phpunit --stderr --coverage-clover coverage.xml"
}
}
}
5 changes: 1 addition & 4 deletions migrations/create_table_posts_1669639752.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
<?php

use Quantum\Libraries\Database\Factories\TableFactory;
use Quantum\Migration\QtMigration;
use Quantum\Factory\TableFactory;
use Quantum\Libraries\Database\Schema\Type;
use Quantum\Libraries\Database\Schema\Key;


class Create_table_posts_1669639752 extends QtMigration
{
Expand Down
5 changes: 1 addition & 4 deletions migrations/create_table_users_1669639740.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
<?php

use Quantum\Libraries\Database\Factories\TableFactory;
use Quantum\Migration\QtMigration;
use Quantum\Factory\TableFactory;
use Quantum\Libraries\Database\Schema\Type;
use Quantum\Libraries\Database\Schema\Key;


class Create_table_users_1669639740 extends QtMigration
{
Expand Down
1 change: 0 additions & 1 deletion shared/Commands/DemoCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,6 @@ public function exec()
"--demo" => "yes"
]);


$this->info('Demo project created successfully');
}

Expand Down
11 changes: 1 addition & 10 deletions shared/config/modules.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
<?php

return [
'Web' => [
'prefix' => '',
'enabled' => true,
],
'Api' => [
'prefix' => 'api',
'enabled' => true,
],
];
return [];

0 comments on commit f4625d2

Please sign in to comment.