This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| use GuzzleHttp\Client; | |
| class SlackFileDeleter | |
| { | |
| /** | |
| * Slack API token. | |
| * | |
| * @var string |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| use Elephany\Console\Kernel; | |
| use Illuminate\Foundation\Testing\DatabaseTransactions; | |
| use Illuminate\Foundation\Testing\Concerns\ImpersonatesUsers; | |
| use Illuminate\Foundation\Testing\Concerns\MakesHttpRequests; | |
| use Illuminate\Foundation\Testing\Concerns\InteractsWithConsole; | |
| use Illuminate\Foundation\Testing\Concerns\InteractsWithSession; | |
| use Illuminate\Foundation\Testing\Concerns\InteractsWithDatabase; | |
| use Illuminate\Foundation\Testing\Concerns\InteractsWithContainer; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Providers; | |
| use Blade; | |
| use Illuminate\Support\ServiceProvider; | |
| class BladeDirectivesProvider extends ServiceProvider | |
| { | |
| /** |