PHP Classes

File: test/ssa/converter/ServiceTest.php

Recommend this page to a friend!
  Classes of thomas   SSA   test/ssa/converter/ServiceTest.php   Download  
File: test/ssa/converter/ServiceTest.php
Role: Unit test script
Content type: text/plain
Description: Unit test script
Class: SSA
Call PHP classes from JavaScript on Web pages
Author: By
Last change:
Date: 9 years ago
Size: 881 bytes
 

Contents

Class file image Download
<?php

namespace ssa\converter;

/**
 * Service utilisé dans le test des converteurs
 *
 * @author thomas
 */
class ServiceTest {
   
   
/**
     * action1 documentation
     *
     * @param string $param1
     * @param array(array(int)) $param2 second parameter
     */
   
public function action1($param1, $param2) {
       
    }
   
   
/**
     *
     * @param string $param1
     *
     * @return string the string
     */
   
public function action2($param1) {
       
    }
   
   
/**
     * action 3 documentation
     *
     * @param string $param1
     */
   
public function action3(ServiceTest $service) {
       
    }
   
   
/**
     * documentation avec un return
     *
     * @return
     */
   
public function action4() {
        return
'';
    }
   
   
/**
     * documentation toute simple
     */
   
public function action5() {
    }
}