This file contains 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 | |
declare(strict_types=1); | |
namespace App\Providers; | |
use Illuminate\Http\Client\Response as HttpClientResponse; | |
use Illuminate\Support\ServiceProvider; | |
use Symfony\Bridge\PsrHttpMessage\Factory\HttpFoundationFactory; | |
use Symfony\Component\HttpFoundation\StreamedResponse; |
This file contains 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 | |
declare(strict_types=1); | |
namespace App\Providers; | |
use Illuminate\Support\ServiceProvider; | |
use App\Pseudo\Filters\FilterInterface; | |
use App\Pseudo\Filters\FilterClassOne; | |
use App\Pseudo\Filters\FilterClassTwo; |
This file contains 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 | |
declare(strict_types=1); | |
namespace Tests; | |
use App\SomeClass; | |
use App\AnotherClass; | |
use PHPUnit\Framework\TestCase; | |
use Tests\Traits\TestsObjects; |
This file contains 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
@echo off | |
:: | |
:: PHP ??? have Xdebug + Blackfire. | |
:: PHP 7.4.14 has Xdebug with coverage | |
:: PHP 7.4.15 has Xdebug with develop + trace | |
:: | |
:set PHPBIN=C:\wamp\bin\phpcli_x86\php5.2.17\php.exe | |
:set PHPBIN=C:\wamp\bin\phpcli_x86\php5.3.29\php.exe | |
:set PHPBIN=C:\wamp\bin\phpcli_x86\php5.4.45\php.exe | |
:set PHPBIN=C:\wamp\bin\php\php5.5.38\php.exe |
This file contains 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 | |
declare(strict_types=1); | |
namespace App\Plans; | |
use \Exception; | |
class InvalidPlanClassException extends Exception | |
{ |
This file contains 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 | |
declare(strict_types=1); | |
namespace App\Providers; | |
use Illuminate\Support\ServiceProvider; | |
class DbMacrosProvider extends ServiceProvider | |
{ |
This file contains 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 | |
declare(strict_types=1); | |
use Illuminate\Database\Eloquent\Builder as EloquentBuilder; | |
use Illuminate\Database\Query\Builder as QueryBuilder; | |
QueryBuilder::macro( | |
'toRawSql', | |
function () { |
This file contains 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 | |
// this is routes/web.php | |
Route::twillioWebhook('/blah', Controller::class); |
This file contains 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 | |
declare(strict_types=1); | |
use Illuminate\Database\Migrations\Migration; | |
use Illuminate\Database\Schema\Blueprint; | |
use Illuminate\Support\Facades\Schema; | |
class RemovePercentageCommissionFeesFromAuctionListings extends Migration | |
{ |
This file contains 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
The Juggernaut | |
Each piece is high armour stat, the main idea is to be in cover and then burst out and run at your enemies and hit them. | |
While having higher defence for limited time. | |
2pc: +5% hazard protection | |
+25% melee damage | |
3pc: +15% Explosive resistance | |
+10% Hazard protection |
NewerOlder