Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add property type hints
Improves auto-completion & IDE auto resolution.
  • Loading branch information
ravage84 committed Sep 5, 2018
1 parent a57ba73 commit 4bede6a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tests/TestCase/Cache/SimpleCacheEngineTest.php
Expand Up @@ -14,6 +14,7 @@
*/
namespace Cake\Test\TestCase\Cache;

use Cake\Cache\CacheEngine;
use Cake\Cache\Engine\FileEngine;
use Cake\Cache\SimpleCacheEngine;
use Cake\TestSuite\TestCase;
Expand All @@ -26,6 +27,20 @@
*/
class SimpleCacheEngineTest extends TestCase
{
/**
* The inner cache engine
*
* @var CacheEngine
*/
protected $inner;

/**
* The simple cache engine under test
*
* @var SimpleCacheEngine
*/
protected $cache;

/**
* Setup
*
Expand Down

0 comments on commit 4bede6a

Please sign in to comment.