This repository was archived by the owner on Dec 27, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +57
-5
lines changed Expand file tree Collapse file tree 5 files changed +57
-5
lines changed Original file line number Diff line number Diff line change 4
4
namespace Litipk \JupyterPhpInstaller \Command ;
5
5
6
6
7
- final class InfoCommand
7
+ use Symfony \Component \Console \Command \Command ;
8
+ use Symfony \Component \Console \Input \InputInterface ;
9
+ use Symfony \Component \Console \Output \OutputInterface ;
10
+
11
+
12
+ final class InfoCommand extends Command
8
13
{
14
+ protected function configure ()
15
+ {
16
+
17
+ }
18
+
19
+ protected function execute (InputInterface $ input , OutputInterface $ output )
20
+ {
9
21
22
+ }
10
23
}
Original file line number Diff line number Diff line change 4
4
namespace Litipk \JupyterPhpInstaller \Command ;
5
5
6
6
7
- final class InstallCommand
7
+ use Symfony \Component \Console \Command \Command ;
8
+ use Symfony \Component \Console \Input \InputInterface ;
9
+ use Symfony \Component \Console \Output \OutputInterface ;
10
+
11
+
12
+ final class InstallCommand extends Command
8
13
{
14
+ protected function configure ()
15
+ {
16
+
17
+ }
18
+
19
+ protected function execute (InputInterface $ input , OutputInterface $ output )
20
+ {
9
21
22
+ }
10
23
}
Original file line number Diff line number Diff line change 4
4
namespace Litipk \JupyterPhpInstaller \Command ;
5
5
6
6
7
- final class UninstallCommand
7
+ use Symfony \Component \Console \Command \Command ;
8
+ use Symfony \Component \Console \Input \InputInterface ;
9
+ use Symfony \Component \Console \Output \OutputInterface ;
10
+
11
+
12
+ final class UninstallCommand extends Command
8
13
{
14
+ protected function configure ()
15
+ {
16
+
17
+ }
18
+
19
+ protected function execute (InputInterface $ input , OutputInterface $ output )
20
+ {
9
21
22
+ }
10
23
}
Original file line number Diff line number Diff line change 4
4
namespace Litipk \JupyterPhpInstaller \Command ;
5
5
6
6
7
- final class UpdateCommand
7
+ use Symfony \Component \Console \Command \Command ;
8
+ use Symfony \Component \Console \Input \InputInterface ;
9
+ use Symfony \Component \Console \Output \OutputInterface ;
10
+
11
+
12
+ final class UpdateCommand extends Command
8
13
{
14
+ protected function configure ()
15
+ {
16
+
17
+ }
18
+
19
+ protected function execute (InputInterface $ input , OutputInterface $ output )
20
+ {
9
21
22
+ }
10
23
}
Original file line number Diff line number Diff line change 30
30
* @author Jordi Boggiano <j.boggiano@seld.be>
31
31
* @author Andres Correa <castarco@litipk.com>
32
32
*/
33
- class ConsoleIO implements IOInterface
33
+ final class ConsoleIO implements IOInterface
34
34
{
35
35
protected $ input ;
36
36
protected $ output ;
You can’t perform that action at this time.
0 commit comments