DigiComp.SettingValidator/Tests/Functional/Fixtures/TestValidationGroupsCustomObject.php
2020-05-04 22:19:37 +02:00

32 lines
523 B
PHP

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