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