appwrite/src/Appwrite/Task/Version.php

20 lines
398 B
PHP
Raw Normal View History

2022-07-08 02:27:06 +00:00
<?php
namespace Appwrite\Task;
use Utopia\App;
use Utopia\CLI\Console;
2022-07-13 06:26:22 +00:00
use Utopia\Platform\Action;
2022-07-08 02:27:06 +00:00
2022-07-13 06:26:22 +00:00
class Version extends Action {
2022-07-13 07:02:55 +00:00
public const NAME = 'version';
2022-07-13 06:26:22 +00:00
public function __construct()
{
$this
2022-07-08 02:27:06 +00:00
->desc('Get the server version')
2022-07-13 06:26:22 +00:00
->callback(function () {
2022-07-08 02:27:06 +00:00
Console::log(App::getEnv('_APP_VERSION', 'UNKNOWN'));
});
}
}