$ php --ini
Add the pre-push
file into your .git/hooks/
folder.
https://coderwall.com/p/jp7d5q/create-a-global-git-commit-hook
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
Show hidden characters
{ | |
"bold_folder_labels": true, | |
"caret_extra_width": 1, | |
"caret_style": "phase", | |
"color_scheme": "Packages/Predawn/predawn.tmTheme", | |
"draw_minimap_border": true, | |
"fade_fold_buttons": false, | |
"findreplace_small": true, | |
"font_face": "Source Code Pro", | |
"font_options": |
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
# Aliases in this file are bash and zsh compatible | |
# Don't change. The following determines where YADR is installed. | |
yadr=$HOME/.yadr | |
# YADR support | |
alias yav='yadr vim-add-plugin' | |
alias ydv='yadr vim-delete-plugin' | |
alias ylv='yadr vim-list-plugin' | |
alias yup='yadr update-plugins' |
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
27. ErrorException | |
…/Modules/Parts/Events/PartWasManufacturedEvent.php12 | |
26. Illuminate\Exception\Handler handleError | |
…/Modules/Parts/Events/PartWasManufacturedEvent.php12 | |
25. Modules\Parts\Events\PartWasManufacturedEvent __construct | |
…/Modules/Parts/Events/PartWasManufacturedEvent.php25 | |
24. Modules\Parts\Events\PartWasManufacturedEvent deserialize | |
…/vendor/broadway/broadway/src/Broadway/Serializer/SimpleInterfaceSerializer.php53 | |
23. Broadway\Serializer\SimpleInterfaceSerializer deserialize |
Interface | Implementation |
---|---|
CommandBusInterface |
SimpleCommandBus |
UuidGeneratorInterface |
Version4Generator |
EventDispatcherInterface |
Broadway\EventDispatcher\EventDispatcher |
RepositoryInterface |
Broadway\EventSourcing\EventSourcingRepository |
Broadway\EventStore\EventStoreInterface |
Broadway\EventStore\DBALEventStore |
Broadway\EventHandling\EventBusInterface |
Broadway\EventHandling\SimpleEventBus |
I hereby claim:
- I am nwidart on github.
- I am nwidart (https://keybase.io/nwidart) on keybase.
- I have a public key whose fingerprint is 5D29 2EFE 4F44 6CE1 B80C C6CF C1AC 62B3 DBC6 4FD4
To claim this, I am signing this object:
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 namespace Modules\Blog\Entities; | |
use Doctrine\ORM\Mapping AS ORM; | |
/** | |
* @ORM\Entity | |
* @ORM\Table(name="categories") | |
*/ | |
class Category | |
{ |
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 | |
class NUMBERS | |
{ | |
/** | |
* Determine if numer is a float even when placed in a string. Bases type on a foreknown decimal length | |
* @param $num | |
* @param int $decimals | |
* @return bool | |
*/ |