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
body { | |
font-size: 16px; | |
font-family: Avenir; | |
} |
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\Services; | |
use App\Models\ZipFile; | |
use Illuminate\Support\Collection; | |
use ZipStream\Exception\FileNotFoundException; | |
use ZipStream\ZipStream as ZipStreamBase; | |
class ZipStream extends ZipStreamBase | |
{ |
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\Console; | |
use Illuminate\Support\Collection; | |
/** | |
* Taken from https://github.com/spatie/laravel-tinker-tools. Made to work with PHP 5.6, and have preferred namespaces. | |
*/ | |
class ShortClassNames |
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 | |
/** | |
* Access/modify any instance private property. | |
*/ | |
class Undies { | |
protected $instance; | |
protected $setter; | |
protected $getter; | |
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 | |
function __autoload($class_name) { | |
$path = str_replace("\\","/",$class_name); | |
include "lib/" . $path . '.php'; | |
} | |
$i = 0; | |
$path = false; | |
//file_put_contents("server.log",""); // I want a clean log file for this run |