Skip to content
Snippets Groups Projects
Select Git revision
  • 4337ddf58d28dbdee4e1367bf71ee13393ab9820
  • 8.3.x default
  • 3221889-add-support-for
  • 8.x-3.x
  • 8.x-2.x
  • 7.x-1.x
  • 7.x-2.x
  • 6.x-2.x
  • 5.x-2.x
  • 6.x-1.x
  • 4.7.x-1.x
  • 4.7.x-2.x
  • 5.x-1.x
  • 8.3.13
  • 8.3.12
  • 8.3.11
  • 8.3.10
  • 8.3.9
  • 8.3.8
  • 8.x-3.8
  • 8.3.7
  • 8.x-3.7
  • 8.3.6
  • 8.x-3.6
  • 8.3.5
  • 8.x-3.5
  • 8.3.4
  • 8.x-3.4
  • 8.3.3
  • 8.x-3.3
  • 8.3.2
  • 8.x-3.2
  • 8.3.1
33 results

DocCommentAlignmentUnitTest.inc

Blame
  • Forked from project / coder
    213 commits behind the upstream repository.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    DocCommentAlignmentUnitTest.inc 311 B
    <?php
    
    /**
     * @file
     * Test file.
     */
    
    /**
     * Test class with properties.
     */
    class Test {
    
      /**
      * Bad comment alignment.
        */
      var $varStyle;
    
    }
    
    /**
     * Short description.
     *
     * @param string $a
     *   The following reference is allowed to be indented.
     *   @see my_function()
     */
    function test31($a) {
    
    }