~ubuntu-branches/ubuntu/utopic/php-codesniffer/utopic-proposed

« back to all changes in this revision

Viewing changes to PHP_CodeSniffer-1.1.0/CodeSniffer/Standards/Squiz/Tests/Commenting/DocCommentAlignmentUnitTest.inc

  • Committer: Package Import Robot
  • Author(s): Thomas Goirand
  • Date: 2012-05-31 16:37:24 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120531163724-u6aiaubu8ks5dh5z
Tags: 1.3.4-0.1
* Non-maintainer upload.
* New upstream release (Closes: #599617, #634825).
* Swtiched debian/copyright to format 1.0 (rewrite was needed anyway, as the
upstream license changed).
* Switched package to pkg-php-tools and debhelper 8 sequencer.
* Now running unit tests at build time (so depends on phpunit (>= 3.6)).
* Section is now PHP.
* Added missing Build-Depends-Indep: php-pear.
* Added missing ${misc:Depends}.
* Added Vcs fields.
* Added homepage field.
* Reviewed short and long description.
* Added dependency on php-timer.
* Standards-Version: is now 3.9.3 (lots of changes, see above...).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
/**
3
 
 * Some info about the class here
4
 
 *
5
 
 */
6
 
class MyClass
7
 
{
8
 
    /**
9
 
     * Some info about the function here.
10
 
     *
11
 
     *@return void
12
 
     */
13
 
    function myFunction() {}
14
 
}
15
 
 
16
 
/**
17
 
  *  Some info about the class here
18
 
  *
19
 
  */
20
 
class MyClass
21
 
{
22
 
    /**
23
 
      *Some info about the function here.
24
 
      *
25
 
      *  @return void
26
 
      */
27
 
    function myFunction() {}
28
 
}
29
 
 
30
 
/**
31
 
 * Some info about the class here
32
 
  *
33
 
*/
34
 
class MyClass
35
 
{
36
 
    /**
37
 
     * Some info about the function here.
38
 
      *
39
 
    * @return void
40
 
     */
41
 
    function myFunction() {}
42
 
}
43
 
 
44
 
function myFunction()
45
 
{
46
 
    echo 'hi';
47
 
    /**
48
 
        Comment here.
49
 
        */
50
 
}
51
 
 
52
 
?>
 
 
b'\\ No newline at end of file'