* * For the full copyright and license information, please view * the LICENSE file that was distributed with this source code. */ namespace Phalcon\DevTools; //use Phalcon\Version as PhVersion; use Phalcon\Support\Version as PhVersion; /** * This class allows to get the installed version of the Developer Tools */ class Version extends PhVersion { /** * {@inheritdoc} * * @return array */ // phpcs:disable protected static function _getVersion(): array { return [4, 1, 0, 0, 0]; } // phpcs:enable public function get(): string { return '4.1.0'; } }