Skip to content
This repository was archived by the owner on Dec 27, 2023. It is now read-only.

Commit 6cf9cd2

Browse files
committed
Added skeleton to the commands
1 parent f7fc063 commit 6cf9cd2

File tree

5 files changed

+57
-5
lines changed

5 files changed

+57
-5
lines changed

src/Command/InfoCommand.php

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,20 @@
44
namespace Litipk\JupyterPhpInstaller\Command;
55

66

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
813
{
14+
protected function configure()
15+
{
16+
17+
}
18+
19+
protected function execute(InputInterface $input, OutputInterface $output)
20+
{
921

22+
}
1023
}

src/Command/InstallCommand.php

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,20 @@
44
namespace Litipk\JupyterPhpInstaller\Command;
55

66

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
813
{
14+
protected function configure()
15+
{
16+
17+
}
18+
19+
protected function execute(InputInterface $input, OutputInterface $output)
20+
{
921

22+
}
1023
}

src/Command/UninstallCommand.php

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,20 @@
44
namespace Litipk\JupyterPhpInstaller\Command;
55

66

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
813
{
14+
protected function configure()
15+
{
16+
17+
}
18+
19+
protected function execute(InputInterface $input, OutputInterface $output)
20+
{
921

22+
}
1023
}

src/Command/UpdateCommand.php

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,20 @@
44
namespace Litipk\JupyterPhpInstaller\Command;
55

66

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
813
{
14+
protected function configure()
15+
{
16+
17+
}
18+
19+
protected function execute(InputInterface $input, OutputInterface $output)
20+
{
921

22+
}
1023
}

src/IO/ConsoleIO.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* @author Jordi Boggiano <j.boggiano@seld.be>
3131
* @author Andres Correa <castarco@litipk.com>
3232
*/
33-
class ConsoleIO implements IOInterface
33+
final class ConsoleIO implements IOInterface
3434
{
3535
protected $input;
3636
protected $output;

0 commit comments

Comments
 (0)