for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
class DNReference extends ViewableData {
/**
* @var Gitonomy\Git\Reference
*/
protected $reference;
private static $casting = array(
$casting
This check marks private properties in classes that are never used. Those properties can be removed.
'Name' => 'Text',
'FullName' => 'Text',
'Filename' => 'Text'
);
public function __construct(Gitonomy\Git\Reference $reference) {
$this->reference = $reference;
}
public function Name() {
return $this->reference->getName();
public function FullName() {
return $this->reference->getCommitHash();
public function Filename() {
return $this->reference->getFullname();
This check marks private properties in classes that are never used. Those properties can be removed.