Skip to content
Snippets Groups Projects
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.fixed 314 B
<?php

/**
 * @file
 * Test file.
 */

/**
 * Test class with properties.
 */
class Test {

  /**
   * Bad comment alignment.
   */
  public $varStyle;

}

/**
 * Short description.
 *
 * @param string $a
 *   The following reference is allowed to be indented.
 *   @see my_function()
 */
function test31($a) {

}