Skip to content
Snippets Groups Projects
Select Git revision
  • aa72efb204287848a56a74e90dd30553277c2abf
  • master default
2 results

Interface.php

Blame
  • user avatar
    Tim Steiner authored
    Creation of framework level controller, model, and view directories.  Moved existing library files to /library.
    
    aa72efb2
    History
    Interface.php 153 B
    <?php
    
    require_once('Zend.php');
    Zend::loadClass('Nmc_Auth_Exception');
    
    interface Nmc_Auth_Interface
    {
    	public function login( $username, $password );
    }