PHP Classes

File: vendor/jackbooted/util/Invocation.php

Recommend this page to a friend!
  Classes of Brett Dutton   JackBooted PHP Framework   vendor/jackbooted/util/Invocation.php   Download  
File: vendor/jackbooted/util/Invocation.php
Role: Class source
Content type: text/plain
Description: Class source
Class: JackBooted PHP Framework
Web application framework using simplified MVC
Author: By
Last change:
Date: 8 years ago
Size: 598 bytes
 

Contents

Class file image Download
<?php
namespace Jackbooted\Util;

/**
 * @copyright Confidential and copyright (c) 2016 Jackbooted Software. All rights reserved.
 *
 * Written by Brett Dutton of Jackbooted Software
 * brett at brettdutton dot com
 *
 * This software is written and distributed under the GNU General Public
 * License which means that its source code is freely-distributed and
 * available to the general public.
 */

class Invocation extends \Jackbooted\Util\JB {
    private static
$dbtabInvocations = 0;

    public static function
next () {
       
$id = self::$dbtabInvocations++;
        return
$id;
    }
}