@@ -2,7 +2,6 @@ |
||
2 | 2 | |
3 | 3 | use Fenos\Notifynder\Groups\NotifynderGroup; |
4 | 4 | use Illuminate\Console\Command; |
5 | -use Symfony\Component\Console\Input\InputOption; |
|
6 | 5 | use Symfony\Component\Console\Input\InputArgument; |
7 | 6 | |
8 | 7 | class GroupAdd extends Command { |
@@ -1,7 +1,6 @@ |
||
1 | 1 | <?php namespace Fenos\Notifynder\Builder; |
2 | 2 | |
3 | 3 | use Carbon\Carbon; |
4 | -use App; |
|
5 | 4 | use Fenos\Notifynder\Categories\NotifynderCategory; |
6 | 5 | use Fenos\Notifynder\Exceptions\NotificationBuilderException; |
7 | 6 | use Traversable; |
@@ -1,7 +1,6 @@ |
||
1 | 1 | <?php namespace Fenos\Notifynder\Models; |
2 | 2 | |
3 | 3 | use Config; |
4 | - |
|
5 | 4 | use Fenos\Notifynder\Models\Collection\NotifynderCollection; |
6 | 5 | use Fenos\Notifynder\Parse\NotifynderParse; |
7 | 6 | use Fenos\Notifynder\Translator\NotifynderTranslator; |
@@ -1,7 +1,6 @@ |
||
1 | 1 | <?php namespace Fenos\Notifynder\Notifications\Repositories; |
2 | 2 | |
3 | 3 | use Fenos\Notifynder\Models\Notification; |
4 | -use Fenos\Notifynder\Senders\StoreNotification; |
|
5 | 4 | use Illuminate\Database\DatabaseManager; |
6 | 5 | use Illuminate\Database\Connection; |
7 | 6 | use Illuminate\Database\Eloquent\Builder; |
@@ -10,7 +10,6 @@ |
||
10 | 10 | use Fenos\Notifynder\Groups\Repositories\NotificationGroupCategoryRepository; |
11 | 11 | use Fenos\Notifynder\Groups\Repositories\NotificationGroupsRepository; |
12 | 12 | use Fenos\Notifynder\Handler\NotifynderHandler; |
13 | -use Fenos\Notifynder\Models\Notification; |
|
14 | 13 | use Fenos\Notifynder\Models\NotificationCategory; |
15 | 14 | use Fenos\Notifynder\Models\NotificationGroup; |
16 | 15 | use Fenos\Notifynder\Notifications\NotifynderNotification; |
@@ -1,7 +1,5 @@ |
||
1 | 1 | <?php namespace Fenos\Notifynder\Parse; |
2 | 2 | |
3 | -use Illuminate\Database\Eloquent\Collection; |
|
4 | - |
|
5 | 3 | /** |
6 | 4 | * |
7 | 5 | * Class parse used on collection. It permit to decode the special |
@@ -4,8 +4,6 @@ |
||
4 | 4 | use Fenos\Notifynder\Notifications\Repositories\NotificationRepository; |
5 | 5 | use Fenos\Notifynder\Notifynder; |
6 | 6 | use Fenos\Notifynder\Senders\Queue\NotifynderQueue; |
7 | -use Illuminate\Config\Repository; |
|
8 | -use Illuminate\Queue\QueueManager; |
|
9 | 7 | |
10 | 8 | /** |
11 | 9 | * Class NotifynderSender |