mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-01 04:33:12 +08:00
13 lines
212 B
PHP
13 lines
212 B
PHP
<?php
|
|
namespace Shlinkio\Shlink\CLI\Command\Install;
|
|
|
|
use Zend\Config\Writer\WriterInterface;
|
|
|
|
class UpdateCommand extends InstallCommand
|
|
{
|
|
public function createDatabase()
|
|
{
|
|
return true;
|
|
}
|
|
}
|