ManaPHP\Task\Metadata\AdapterInterface::exists PHP Method

exists() public method

public exists ( string $key ) : boolean
$key string
return boolean
    public function exists($key);

Usage Example

Example #1
0
 /**
  * @param string $task
  * @param string $field
  *
  * @return bool
  */
 public function exists($task, $field)
 {
     return $this->adapter->exists($this->_formatKey($task, $field));
 }