PHP Classes

File: app/models/User.php

Recommend this page to a friend!
  Classes of John Marlo Factorin   Bit Framework   app/models/User.php   Download  
File: app/models/User.php
Role: Class source
Content type: text/plain
Description: Class source
Class: Bit Framework
MVC based Web application development framework
Author: By
Last change: Update of app/models/User.php
Date: 2 months ago
Size: 220 bytes
 

Contents

Class file image Download
<?php

/**
 * Class User
 */
class User extends Snipworks\BitCore\Model
{
    protected
$name = 'snipworks';

   
/**
     * @return string
     */
   
public function getName()
    {
        return
$this->name;
    }
}