for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
class TriColumnBlock extends Block {
private static $singular_name = 'Triple-column Block';
$singular_name
This check marks private properties in classes that are never used. Those properties can be removed.
private static $db = array (
$db
'LeftColumn' => 'HTMLText',
'MiddleColumn' => 'HTMLText',
'RightColumn' => 'HTMLText'
);
}
This check marks private properties in classes that are never used. Those properties can be removed.