mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-09-08 04:22:40 +00:00
Changed all $__ declared variables to private.
This commit is contained in:
parent
558a9db642
commit
29dc12dbc2
39 changed files with 108 additions and 108 deletions
|
@ -75,7 +75,7 @@ class DboSource extends DataSource {
|
|||
* @var boolean
|
||||
* @access private
|
||||
*/
|
||||
var $__bypass = false;
|
||||
private $__bypass = false;
|
||||
|
||||
/**
|
||||
* The set of valid SQL operations usable in a WHERE statement
|
||||
|
@ -83,7 +83,7 @@ class DboSource extends DataSource {
|
|||
* @var array
|
||||
* @access private
|
||||
*/
|
||||
var $__sqlOps = array('like', 'ilike', 'or', 'not', 'in', 'between', 'regexp', 'similar to');
|
||||
private $__sqlOps = array('like', 'ilike', 'or', 'not', 'in', 'between', 'regexp', 'similar to');
|
||||
|
||||
/**
|
||||
* Index of basic SQL commands
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue