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