diff options
author | Phil Burton <phil@d3r.com> | 2018-01-11 11:41:45 +0000 |
---|---|---|
committer | Phil Burton <phil@d3r.com> | 2018-01-11 11:41:45 +0000 |
commit | d8ec13583be7e34a2e616023a525657fbf11e848 (patch) | |
tree | d4eacc48aad8622fce640804acfe240515ac0ca6 |
Inital commit
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | src/app.php | 10 |
2 files changed, 13 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..95abe3e --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# BlaDump + +Returns a random phrase that means taking a dump diff --git a/src/app.php b/src/app.php new file mode 100644 index 0000000..0a10ec6 --- /dev/null +++ b/src/app.php @@ -0,0 +1,10 @@ +#!/usr/bin/php +<?php + +/** + * Returns a random phrase for taking a dump + * + * @author Phil Burton <phil@d3r.com> + */ + +echo "dump\n"; |