public function __construct()

in src/WorkplaceSearch/Schema/RecordDeletedResponse.php [30:36]


	public function __construct(bool $deleted)
	{
		if (!in_array($deleted, ['1'])) {
			throw new InvalidArgumentException('The $deleted parameter must be one of these values: 1');
		}
		$this->deleted = $deleted;
	}