for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
class DualColumnBlock extends Block {
private static $singular_name = 'Dual-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',
'RightColumn' => 'HTMLText'
);
}
This check marks private properties in classes that are never used. Those properties can be removed.