I hereby claim:
- I am alexbowers on github.
- I am bowersbros (https://keybase.io/bowersbros) on keybase.
- I have a public key ASARDpx0lu-Nf4_c-gHI1CR3pzVPs6h4AEdydnJpuiqcWAo
To claim this, I am signing this object:
<?php | |
namespace App\Console\Commands; | |
use Illuminate\Console\Command; | |
class ClearHorizonQueue extends Command | |
{ | |
/** | |
* The name and signature of the console command. |
<?php | |
Collection::macro('mapAttachUntil', new mapAttachUntil); | |
// Examples: | |
collect([ | |
[ | |
'Action' => 'Category', | |
'Name' => 'One', |
<template> | |
<div> | |
<p class="bg-blue">Hello World 2</p> | |
</div> | |
</template> | |
<script> | |
export default {}; | |
</script> |
--- | |
- name: restart apparmor | |
become: yes | |
service: | |
name: apparmor | |
state: restarted | |
- name: restart mysql | |
become: yes | |
service: |
I hereby claim:
To claim this, I am signing this object:
<?php | |
class _╯°□°╯︵┻━┻ extends \Exception {} | |
function _╯°□°╯︵┻━┻($message) { | |
throw new _╯°□°╯︵┻━┻($message); | |
} | |
_╯°□°╯︵┻━┻("Flip Table"); |
let original_console = window.console; | |
let console = Object.create(window.console); | |
console.log = function(msg, formatting) { | |
formatting = formatting || ''; | |
console.groupCollapsed(); | |
console.trace(); | |
original_console.log(msg, formatting); | |
console.groupEnd(); |
<?php | |
class Collection implements Castable | |
{ | |
protected $items = []; | |
public function __construct(array $items = []) | |
{ | |
$this->items = $items; | |
} |
<?php | |
class Collection implements ArrayAccess, Arrayable, ... | |
{ | |
protected $items = []; | |
public function __construct(array $items = []) | |
{ | |
$this->items = $items; | |
} |
<?php | |
class Annotation | |
{ | |
private $ip = 'Your IP'; | |
private $port = '8089'; | |
/** | |
* Annotation constructor. | |
* |