1 | <?php |
||
14 | class AppController { |
||
15 | |||
16 | |||
17 | private $input; |
||
18 | |||
19 | |||
20 | private $output; |
||
21 | |||
22 | |||
23 | private $css; |
||
24 | |||
25 | |||
26 | private $html; |
||
27 | |||
28 | |||
29 | |||
30 | public function __construct(InputInterface $input, OutputInterface $output) { |
||
35 | |||
36 | |||
37 | /** |
||
38 | * Start up the PurgeManager and output the summary |
||
39 | */ |
||
40 | public function run() { |
||
60 | |||
61 | |||
62 | |||
63 | /** |
||
64 | * Create the CSS Document object and build the html |
||
65 | * filenames array |
||
66 | * |
||
67 | * This function is just here in the interim as refactoring |
||
68 | * occurs |
||
69 | */ |
||
70 | public function setUp() { |
||
84 | |||
85 | |||
86 | |||
87 | /* |
||
88 | * Write the summary to the specified file, function will change |
||
89 | * simply here to get basic functionality. |
||
90 | * |
||
91 | * @param array $purgedCSS |
||
92 | * An array of DeclarationBlocks |
||
93 | */ |
||
94 | public function outputSummary($purgedCSS) { |
||
114 | |||
115 | } |
||
116 |