PHP Classes

File: Mixin.php

Recommend this page to a friend!
  Classes of Payam Naderi   Std   Mixin.php   Download  
File: Mixin.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Std
General purpose Web development classes
Author: By
Last change:
Date: 6 years ago
Size: 232 bytes
 

Contents

Class file image Download
<?php
namespace Poirot\Std;

// DO_LEAST_PHPVER_SUPPORT 5.4 closure bindto & trait
if (version_compare(phpversion(), '5.4.0') < 0) {
    require_once
__DIR__.'/fixes/Mixin.php';
    return;
}

require_once
__DIR__.'/Mixin.fix.php';