Provides non-yes boolean logic augmentation
Note: notnt support not currently supported
composer require tractorcow/yesnt
<?php
use function TractorCow\Yesnt\yesnt;
require 'vendor/autoload.php';
if (yesnt()) {
echo "um, why are you here?";
} else {
echo "yes, but not";
}