Pantheon\Terminus\DataStore\FileStore::keys PHP Method

keys() public method

Return a list of all keys in the store.
public keys ( ) : array
return array A list of keys
    public function keys()
    {
        $root = $this->directory;
        return array_diff(scandir($root), array('..', '.'));
    }