Files
HRM-System/app/Library/ZKTeco/Helper/Version.php

23 lines
424 B
PHP

<?php
namespace App\Library\ZKTeco\Helper;;
use App\Library\ZKTeco\Helper\Util;
use App\Library\ZKTeco\ZKTeco;
class Version
{
/**
* @param ZKTeco $self
* @return bool|mixed
*/
static public function get(ZKTeco $self)
{
$self->_section = __METHOD__;
$command = Util::CMD_VERSION;
$command_string = '';
return $self->_command($command, $command_string);
}
}