PHP Classes

File: tests/src/annotated.php

Recommend this page to a friend!
  Packages of Thierry Feuzeu   Jaxon   tests/src/annotated.php   Download  
File: tests/src/annotated.php
Role: Class source
Content type: text/plain
Description: Class source
Class: Jaxon
Call PHP classes from JavaScript using AJAX
Author: By
Last change:
Date: 4 months ago
Size: 350 bytes
 

Contents

Class file image Download
<?php

class Annotated
{
   
/**
     * @exclude(true)
     */
   
public function doNotBool()
    {
    }

   
/**
     * @databag('name' => 'user.name')
     * @databag('name' => 'page.number')
     */
   
public function withBags()
    {
    }

   
/**
     * @upload('field' => 'user-files')
     */
   
public function saveFiles()
    {
    }
}