mirror of
https://github.com/hauke68/Magallanes.git
synced 2025-08-26 21:30:18 +02:00
12 lines
115 B
PHP
12 lines
115 B
PHP
<?php
|
|
|
|
namespace Command;
|
|
|
|
class MyInconsistentCommand
|
|
{
|
|
public function run()
|
|
{
|
|
return 0;
|
|
}
|
|
}
|