diff options
-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"; |