Skip to content

Instantly share code, notes, and snippets.

View telless's full-sized avatar

Viktor telless

  • Russia, Moscow
View GitHub Profile
@telless
telless / BooleanHelper.php
Last active November 28, 2018 11:07
Yii2-style bool-checker
<?php
abstract class BooleanHelper
{
public static function equalTrue($value): bool
{
return self::process($value) === self::getTrueValue();
}
public static function notEqualTrue($value): bool