File: test.php

package info (click to toggle)
phpdox 0.7.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,064 kB
  • ctags: 2,240
  • sloc: xml: 50,881; php: 7,770; makefile: 22; sh: 5
file content (30 lines) | stat: -rw-r--r-- 497 bytes parent folder | download | duplicates (5)
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
26
27
28
29
30
<?php

class foo {

   /** @some annotation */
   protected $data;
   
   /** @route("/") */
   public function test() {}

   /**
    * @other annotation
    */
   public function foobar() {}


/**
* Retrieve network usage ...
*
* @param string $cloudStackSetup
* @param date $fromDate start date
* @param date $toDate end date
*
* @return Array
* @todo refactor returned data - it is not HTML
* @Secure(roles="ROLE")
*/
   public function baz($cloudStacksetup, date $fromDate, date $toDate){}

}