ManaPHP\Counter\AdapterInterface::get PHP 메소드

get() 공개 메소드

public get ( string $type, string $id ) : integer
$type string
$id string
리턴 integer
    public function get($type, $id);

Usage Example

예제 #1
0
파일: Counter.php 프로젝트: manaphp/manaphp
 /**
  *
  * @param string $type
  * @param string $id
  *
  * @return int
  */
 public function get($type, $id)
 {
     return $this->adapter->get($this->_prefix . $type, $id);
 }