summaryrefslogtreecommitdiff
path: root/src/Script/Console.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Script/Console.php')
-rw-r--r--src/Script/Console.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/Script/Console.php b/src/Script/Console.php
deleted file mode 100644
index 5f5d90d..0000000
--- a/src/Script/Console.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-
-namespace App\Script;
-
-use Symfony\Component\Console\Application;
-use App\Script\Command\Site\Create;
-
-/**
- * Main application class
- */
-class Console
-{
- /**
- * Create symfony application and add commands
- *
- * @author Phil Burton <phil@pgburton.com>
- */
- public function __construct()
- {
- $application = new Application();
- $application->add(new Create());
- $application->run();
- }
-}