File: operations.php

package info (click to toggle)
dia2code 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,384 kB
  • sloc: cpp: 8,163; sh: 4,280; php: 289; cs: 267; java: 219; makefile: 49; ansic: 38
file content (25 lines) | stat: -rw-r--r-- 491 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
class operations {
    // Operations
    /**
     * comment
     * @param type1 $in (in)
     * @param type2 $inOut (in/out) comment2
     * @param type3 $undef (???)
     * @param type4 $out (out)
     * @return type
     */
    abstract private function test ($in, $inOut, $undef, $out);
    /**
     * comment2
     */
    public static function test2 () {
    }
    public function test3 () {
    }
    protected function test4 () {
    }
    public function test5 () {
    }
}
?>