summaryrefslogtreecommitdiff
path: root/src/Script/Console.php
blob: 926f41f362059bbc2bcaa898c88ee802c35302ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

namespace App\Script;

use Symfony\Component\Console\Application;
use App\Script\Command\Site;

class Console
{
    public function __construct()
    {
        $application = new Application();
        $application->add(new Site());
        $application->run();
    }
}