2017-07-03 10:11:18 +02:00
|
|
|
<?php
|
2020-03-10 14:48:57 +01:00
|
|
|
|
2022-05-02 09:56:09 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2017-07-03 10:11:18 +02:00
|
|
|
namespace DigiComp\SettingValidator\Tests\Functional\Fixtures;
|
|
|
|
|
|
|
|
class TestValidationGroupsCustomObject
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
2020-05-04 22:19:37 +02:00
|
|
|
protected bool $shouldBeTrue = false;
|
2017-07-03 10:11:18 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
2020-05-04 22:19:37 +02:00
|
|
|
protected bool $shouldBeFalse = true;
|
2017-07-03 10:11:18 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isShouldBeTrue(): bool
|
|
|
|
{
|
|
|
|
return $this->shouldBeTrue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function isShouldBeFalse(): bool
|
|
|
|
{
|
|
|
|
return $this->shouldBeFalse;
|
|
|
|
}
|
|
|
|
}
|