for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
class MapLayer extends DataObject {
static $db = array(
$db
The PSR-2 coding standard requires that all properties in a class have their visibility explicitly declared. If you declare a property using
class A { var $property; }
the property is implicitly global.
To learn more about the PSR-2, please see the PHP-FIG site on the PSR-2.
'Title' => 'Varchar(255)'
);
static $has_one = array(
$has_one
'KmlFile' => 'File'
}
The PSR-2 coding standard requires that all properties in a class have their visibility explicitly declared. If you declare a property using
the property is implicitly global.
To learn more about the PSR-2, please see the PHP-FIG site on the PSR-2.