for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Happyr\ApiClient\Model\Statement;
use Happyr\ApiClient\Model\CreatableFromArray;
/**
* @author Tobias Nyholm <[email protected]>
*/
final class Statement implements CreatableFromArray
{
* @var string
private $id;
$id
This check marks private properties in classes that are never used. Those properties can be removed.
private $sentence;
$sentence
* @var array
private $assessments;
$assessments
* @var int
private $progress;
$progress
private $postUrl;
$postUrl
private $fullPostUrl;
$fullPostUrl
private $section;
$section
private $type;
$type
private function __construct()
}
* @param array $data
*
* @return
public static function createFromArray(array $data)
return new self();
This check marks private properties in classes that are never used. Those properties can be removed.