34 lines
549 B
PHP
34 lines
549 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
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;
|
|
}
|
|
}
|