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
\usepackage[usenames,dvipsnames]{xcolor} | |
\usepackage{multido} | |
\newcommand{\Repeat}{\multido{\i=1+1}} | |
\newcommand{\loremIpsum}{\par \color{Gray}{Lorem ipsum dolor sit amet, consectetur adipiscing elit. | |
Proin ultrices finibus quam ut tincidunt. Phasellus eget aliquam nisl. Ut vestibulum eu erat a rutrum. | |
Pellentesque sem nibh, malesuada nec sagittis non, luctus nec mauris. Integer cursus porttitor leo sed | |
mattis. Nam ac eros ipsum. Integer luctus non velit vel dapibus. Curabitur nec porttitor lacus, a porta | |
mauris. Aliquam in eleifend risus. Etiam auctor vel neque et semper. Integer a laoreet massa, eget | |
molestie dui. Maecenas ultrices ultrices lectus, ac rhoncus tellus hendrerit at. Etiam sapien lorem, |
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
#!/bin/sh | |
MASTER="master" | |
DEV="deploy" | |
VENDOR_DIR="libs/composer" #default composer vendor dir is just vendor | |
OS_NAME=`uname` | |
OS=${OS_NAME:0:5} | |
if [ $OS == "MINGW" ]; then #windows GitBash | |
NULL_OUTPUT="nul" |
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 Factories; | |
use App\Controls\Messages\MessageControl; | |
interface IMessagesManager | |
{ | |
/** |