20 lines
348 B
PHP
20 lines
348 B
PHP
<?php
|
|
|
|
namespace App\DevExtreme;
|
|
|
|
class SummaryContext
|
|
{
|
|
protected static bool $excludeMechanical = false;
|
|
|
|
public static function setExcludeMechanical(bool $flag): void
|
|
{
|
|
self::$excludeMechanical = $flag;
|
|
}
|
|
|
|
public static function shouldExcludeMechanical(): bool
|
|
{
|
|
return self::$excludeMechanical;
|
|
}
|
|
}
|
|
|