tractorcow/yesnt

Provides non-yes boolean logic augmentation

dev-master 2018-10-03 20:30 UTC

This package is auto-updated.

Last update: 2024-03-29 03:51:00 UTC


README

Build Status

Provides non-yes boolean logic augmentation

Note: notnt support not currently supported

installation

composer require tractorcow/yesnt

usage

<?php

use function TractorCow\Yesnt\yesnt;

require 'vendor/autoload.php';

if (yesnt()) {
    echo "um, why are you here?";
} else {
    echo "yes, but not";
}