DigiComp.SettingValidator/Tests/Functional/Fixtures/TestValidationGroupsCustomObject.php

32 lines
512 B
PHP
Raw Normal View History

<?php
namespace DigiComp\SettingValidator\Tests\Functional\Fixtures;
class TestValidationGroupsCustomObject
{
/**
* @var bool
*/
protected $shouldBeTrue = false;
/**
* @var bool
*/
protected $shouldBeFalse = true;
/**
* @return bool
*/
public function isShouldBeTrue(): bool
{
return $this->shouldBeTrue;
}
/**
* @return bool
*/
public function isShouldBeFalse(): bool
{
return $this->shouldBeFalse;
}
}