for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Lamoda\IsmpClient\V3\Dto;
final class FacadeDocListV2Response
{
/**
* @var int
*/
private $total;
* @var FacadeDocListV2ItemResponse[]
private $results;
public function __construct(int $total, FacadeDocListV2ItemResponse ...$results)
$total
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$this->results = $results;
}
public function getTotal(): int
return $this->total;
* @return FacadeDocListV2ItemResponse[]
public function getResults(): array
return $this->results;
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.