Skip to content

Commit be0eebc

Browse files
committed
change namespace
1 parent 0844c4a commit be0eebc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+105
-134
lines changed

docs/assets/favicon.ico

-14.7 KB
Binary file not shown.

docs/assets/flame.svg

Lines changed: 0 additions & 11 deletions
This file was deleted.

docs/assets/github-dark-dimmed.css

Lines changed: 0 additions & 15 deletions
This file was deleted.

docs/assets/hljs.js

Lines changed: 0 additions & 3 deletions
This file was deleted.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ One of the most popular tasks delegated to a queue is sending email messages. Th
4747
namespace App\Jobs;
4848

4949
use Exception;
50-
use Michalsn\CodeIgniterQueue\BaseJob;
51-
use Michalsn\CodeIgniterQueue\Interfaces\JobInterface;
50+
use CodeIgniter\Queue\BaseJob;
51+
use CodeIgniter\Queue\Interfaces\JobInterface;
5252

5353
class Email extends BaseJob implements JobInterface
5454
{

docs/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The only thing you have to do is to run this command, and you're ready to go.
1414

1515
In the example below we will assume, that files from this project will be located in `app/ThirdParty/queue` directory.
1616

17-
Download this project and then enable it by editing the `app/Config/Autoload.php` file and adding the `Michalsn\CodeIgniterQueue` namespace to the `$psr4` array, like in the below example:
17+
Download this project and then enable it by editing the `app/Config/Autoload.php` file and adding the `CodeIgniter\Queue` namespace to the `$psr4` array, like in the below example:
1818

1919
```php
2020
<?php
@@ -24,7 +24,7 @@ Download this project and then enable it by editing the `app/Config/Autoload.php
2424
public $psr4 = [
2525
APP_NAMESPACE => APPPATH, // For custom app namespace
2626
'Config' => APPPATH . 'Config',
27-
'Michalsn\CodeIgniterQueue' => APPPATH . 'ThirdParty/queue/src',
27+
'CodeIgniter\Queue' => APPPATH . 'ThirdParty/queue/src',
2828
];
2929

3030
// ...
File renamed without changes.

src/BaseJob.php

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

3-
namespace Michalsn\CodeIgniterQueue;
3+
namespace CodeIgniter\Queue;
44

55
abstract class BaseJob
66
{

src/Commands/Generators/JobGenerator.php

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

3-
namespace Michalsn\CodeIgniterQueue\Commands\Generators;
3+
namespace CodeIgniter\Queue\Commands\Generators;
44

55
use CodeIgniter\CLI\BaseCommand;
66
use CodeIgniter\CLI\GeneratorTrait;

src/Commands/Generators/Views/job.tpl.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace {namespace};
44

5-
use Michalsn\CodeIgniterQueue\BaseJob;
6-
use Michalsn\CodeIgniterQueue\Interfaces\JobInterface;
5+
use CodeIgniter\Queue\BaseJob;
6+
use CodeIgniter\Queue\Interfaces\JobInterface;
77

88
class {class} extends BaseJob implements JobInterface
99
{

0 commit comments

Comments
 (0)