for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WebOfTalent\PageSiteMap;
class SiteMap extends \Page
{
// hide from menus and search
private static $defaults = array(
$defaults
This check marks private properties in classes that are never used. Those properties can be removed.
'ShowInMenus' => 0,
'ShowInSearch' => 0,
);
}
This check marks private properties in classes that are never used. Those properties can be removed.