PHP Classes

File: app/services/UserService.php

Recommend this page to a friend!
  Classes of John Marlo Factorin   Bit Framework   app/services/UserService.php   Download  
File: app/services/UserService.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/services/UserService.php
Date: 6 months ago
Size: 211 bytes
 

Contents

Class file image Download
<?php

/**
 * Class UserService
 */
class UserService
{
   
/**
     * @return string
     */
   
public static function getUserName()
    {
       
$user = new User();

        return
$user->getName();
    }
}