mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-09-09 04:52:42 +00:00
Changed all public 'var' declarations to be 'public $var'
This commit is contained in:
parent
4c93fc9e52
commit
850ca02bb6
306 changed files with 1728 additions and 1728 deletions
|
@ -34,7 +34,7 @@ class DboPostgres extends DboSource {
|
|||
* @var string
|
||||
* @access public
|
||||
*/
|
||||
var $description = "PostgreSQL DBO Driver";
|
||||
public $description = "PostgreSQL DBO Driver";
|
||||
|
||||
/**
|
||||
* Index of basic SQL commands
|
||||
|
@ -65,7 +65,7 @@ class DboPostgres extends DboSource {
|
|||
'encoding' => ''
|
||||
);
|
||||
|
||||
var $columns = array(
|
||||
public $columns = array(
|
||||
'primary_key' => array('name' => 'serial NOT NULL'),
|
||||
'string' => array('name' => 'varchar', 'limit' => '255'),
|
||||
'text' => array('name' => 'text'),
|
||||
|
@ -87,7 +87,7 @@ class DboPostgres extends DboSource {
|
|||
* @var string
|
||||
* @access public
|
||||
*/
|
||||
var $startQuote = '"';
|
||||
public $startQuote = '"';
|
||||
|
||||
/**
|
||||
* Ending Quote
|
||||
|
@ -95,7 +95,7 @@ class DboPostgres extends DboSource {
|
|||
* @var string
|
||||
* @access public
|
||||
*/
|
||||
var $endQuote = '"';
|
||||
public $endQuote = '"';
|
||||
|
||||
/**
|
||||
* Contains mappings of custom auto-increment sequences, if a table uses a sequence name
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue