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 | |
/** | |
* Projection Rebuilder | |
* @author Markus Muschol <[email protected]> | |
*/ | |
use Broadway\Domain\DateTime; | |
use Broadway\Domain\DomainEventStream; | |
use Broadway\Domain\DomainMessage; | |
use Broadway\Domain\Metadata; | |
use Broadway\EventHandling\EventBusInterface; |
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
#!/bin/bash | |
textReset=$(tput sgr0) | |
textRed=$(tput setaf 1) | |
textYellow=$(tput setaf 3) | |
textGreen=$(tput setaf 2) | |
message_info () { | |
echo "$textGreen[deploy]$textReset $1" | |
} | |
message_error () { | |
echo "$textRed[project]$textReset $1" |