Skip to content

Commit

Permalink
Merge pull request #23 from ruudboon/4.x
Browse files Browse the repository at this point in the history
Generated stubs for Phalcon v4.0.0-beta.1
  • Loading branch information
sergeyklay authored Jul 25, 2019
2 parents 8609889 + 2ffafb5 commit 779bbb3
Show file tree
Hide file tree
Showing 570 changed files with 28,064 additions and 25,274 deletions.
60 changes: 0 additions & 60 deletions src/Phalcon/Acl.php

This file was deleted.

164 changes: 164 additions & 0 deletions src/Phalcon/Cache.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,164 @@
<?php

namespace Phalcon;

/**
* This component offers caching capabilities for your application.
* Phalcon\Cache implements PSR-16.
*/
class Cache implements \Psr\SimpleCache\CacheInterface
{
/**
* The adapter
*
* @var AdapterInterface
*/
protected $adapter;


/**
* The adapter
*
* @return AdapterInterface
*/
public function getAdapter() {}

/**
* Constructor.
*
* @param AdapterInterface $adapter The cache adapter
*/
public function __construct(\Phalcon\Cache\Adapter\AdapterInterface $adapter) {}

/**
* Wipes clean the entire cache's keys.
*
* @return bool
*/
public function clear(): bool {}

/**
* Delete an item from the cache by its unique key.
*
* @param string $key The unique cache key of the item to delete.
*
* @return bool True if the item was successfully removed. False if there was an error.
*
* @throws Phalcon\Cache\Exception\InvalidArgumentException
* MUST be thrown if the $key string is not a legal value.
* @param mixed $key
* @return bool
*/
public function delete($key): bool {}

/**
* Deletes multiple cache items in a single operation.
*
* @param iterable $keys A list of string-based keys to be deleted.
*
* @return bool True if the items were successfully removed. False if there was an error.
*
* @throws Phalcon\Cache\Exception\InvalidArgumentException
* MUST be thrown if $keys is neither an array nor a Traversable,
* or if any of the $keys are not a legal value.
* @param mixed $keys
* @return bool
*/
public function deleteMultiple($keys): bool {}

/**
* Fetches a value from the cache.
*
* @param mixed $default Default value to return if the key does not exist.
*
* @return mixed The value of the item from the cache, or $default in case of cache miss.
*
* @throws Phalcon\Cache\Exception\InvalidArgumentException
* MUST be thrown if the $key string is not a legal value.
* @param string $key The unique key of this item in the cache.
* @param mixed $defaultValue
* @return mixed
*/
public function get($key, $defaultValue = null) {}

/**
* Obtains multiple cache items by their unique keys.
*
* @param mixed $default Default value to return for keys that do not exist.
*
* @return iterable A list of key => value pairs. Cache keys that do not exist or are stale will have $default as value.
*
* @throws Phalcon\Cache\Exception\InvalidArgumentException
* MUST be thrown if $keys is neither an array nor a Traversable,
* or if any of the $keys are not a legal value.
* @param iterable $keys A list of keys that can obtained in a single operation.
* @param mixed $defaultValue
* @return mixed
*/
public function getMultiple($keys, $defaultValue = null) {}

/**
* Determines whether an item is present in the cache.
*
* @param string $key The cache item key.
*
* @return bool
*
* @throws Phalcon\Cache\Exception\InvalidArgumentException
* MUST be thrown if the $key string is not a legal value.
* @param mixed $key
* @return bool
*/
public function has($key): bool {}

/**
* Persists data in the cache, uniquely referenced by a key with an optional expiration TTL time.
*
* @param null|int|\DateInterval $ttl Optional. The TTL value of this item. If no value is sent and
* the driver supports TTL then the library may set a default value
* for it or let the driver take care of that.
*
* @return bool True on success and false on failure.
*
* @throws Phalcon\Cache\Exception\InvalidArgumentException
* MUST be thrown if the $key string is not a legal value.
* @param string $key The key of the item to store.
* @param mixed $value The value of the item to store. Must be serializable.
* @param mixed $ttl
* @return bool
*/
public function set($key, $value, $ttl = null): bool {}

/**
* Persists a set of key => value pairs in the cache, with an optional TTL.
*
* @param null|int|\DateInterval $ttl Optional. The TTL value of this item. If no value is sent and
* the driver supports TTL then the library may set a default value
* for it or let the driver take care of that.
*
* @return bool True on success and false on failure.
*
* @throws Phalcon\Cache\Exception\InvalidArgumentException
* MUST be thrown if $values is neither an array nor a Traversable,
* or if any of the $values are not a legal value.
* @param iterable $values A list of key => value pairs for a multiple-set operation.
* @param mixed $ttl
* @return bool
*/
public function setMultiple($values, $ttl = null): bool {}

/**
* Checks the key. If it contains invalid characters an exception is thrown
*
* @param mixed $key
*/
protected function checkKey($key) {}

/**
* Checks the key. If it contains invalid characters an exception is thrown
*
* @param mixed $keys
*/
protected function checkKeys($keys) {}

}
Loading

0 comments on commit 779bbb3

Please sign in to comment.