Skip to content

Commit

Permalink
Added missing properties
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Jan 2, 2017
1 parent 1050585 commit 1796680
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/Cache/Engine/MemcachedEngine.php
Expand Up @@ -88,6 +88,11 @@ class MemcachedEngine extends CacheEngine
*/
protected $_serializers = [];

/**
* @var string[]
*/
protected $_compiledGroupNames = [];

/**
* Initialize the Cache Engine
*
Expand Down
7 changes: 7 additions & 0 deletions src/Database/Schema/SqliteSchema.php
Expand Up @@ -30,6 +30,13 @@ class SqliteSchema extends BaseSchema
*/
protected $_constraintsIdMap = [];

/**
* Whether there is any table in this connection to SQLite containing sequences.
*
* @var bool
*/
protected $_hasSequences;

/**
* Convert a column definition to the abstract types.
*
Expand Down
10 changes: 10 additions & 0 deletions src/Datasource/QueryCacher.php
Expand Up @@ -29,6 +29,16 @@
class QueryCacher
{

/**
* @var string|callable
*/
protected $_key;

/**
* @var string|CacheEngine
*/
protected $_config;

/**
* Constructor.
*
Expand Down
2 changes: 1 addition & 1 deletion src/ORM/Association/Loader/SelectWithPivotLoader.php
Expand Up @@ -171,7 +171,7 @@ protected function _buildResultMap($fetchQuery, $options)
if (!isset($result[$this->junctionProperty])) {
throw new RuntimeException(sprintf(
'"%s" is missing from the belongsToMany results. Results cannot be created.',
$this->_junctionProperty
$this->junctionProperty
));
}

Expand Down
5 changes: 5 additions & 0 deletions src/Shell/I18nShell.php
Expand Up @@ -34,6 +34,11 @@ class I18nShell extends Shell
*/
public $tasks = ['Extract'];

/**
* @var string[]
*/
protected $_paths;

/**
* Override main() for help message hook
*
Expand Down
4 changes: 4 additions & 0 deletions src/Shell/PluginShell.php
Expand Up @@ -19,6 +19,10 @@

/**
* Shell for tasks related to plugins.
*
* @property \Cake\Shell\Task\AssetsTask $Assets
* @property \Cake\Shell\Task\LoadTask $Load
* @property \Cake\Shell\Task\UnloadTask $Unload
*/
class PluginShell extends Shell
{
Expand Down
6 changes: 6 additions & 0 deletions src/TestSuite/LegacyRequestDispatcher.php
Expand Up @@ -25,6 +25,12 @@
*/
class LegacyRequestDispatcher
{

/**
* @var \Cake\TestSuite\IntegrationTestCase
*/
protected $_test;

/**
* Constructor
*
Expand Down

0 comments on commit 1796680

Please sign in to comment.