Skip to content

Instantly share code, notes, and snippets.

View ludo237's full-sized avatar
🇮🇹
Life is good when you have a good sandwich

Claudio Ludovico ludo237

🇮🇹
Life is good when you have a good sandwich
View GitHub Profile
@ludo237
ludo237 / Assertions.php
Created March 7, 2018 15:11
Laravel PHP custom assertions
<?php
namespace Tests\Utils;
use Ramsey\Uuid\Uuid;
/**
* Trait Assertions
* @package Tests\Utils
*/
@ludo237
ludo237 / prune-branches.sh
Created September 6, 2018 16:13
Delete all branches but keep master
git branch | grep -v "master" | xargs git branch -D