mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-10 17:23:12 +08:00
14 lines
212 B
PHP
14 lines
212 B
PHP
<?php
|
|
namespace Shlinkio\Shlink\CLI\Command\Install;
|
|
|
|
class UpdateCommand extends AbstractInstallCommand
|
|
{
|
|
/**
|
|
* @return bool
|
|
*/
|
|
protected function isUpdate()
|
|
{
|
|
return true;
|
|
}
|
|
}
|