~ubuntu-branches/ubuntu/wily/phabricator/wily

« back to all changes in this revision

Viewing changes to src/lint/linter/__tests__/phpcs/no-errors.lint-test

  • Committer: Package Import Robot
  • Author(s): Richard Sellam
  • Date: 2014-11-01 23:20:06 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: package-import@ubuntu.com-20141101232006-mvlnp0cil67tsboe
Tags: upstream-0~git20141101/arcanist
Import upstream version 0~git20141101, component arcanist

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
 
 
3
/**
 
4
 * This tests for a PHPCS lint run against a file without any errors. PHPCS
 
5
 * literally requires all of this with this exact spacing and formatting.
 
6
 *
 
7
 * PHP version 5
 
8
 *
 
9
 * @category Function
 
10
 * @package  None
 
11
 * @author   Abraham Lincoln <alincoln@logcab.in>
 
12
 * @license  Imaginary License http://www.example.com/LICENSE
 
13
 * @version  GIT: HEAD
 
14
 * @link     http://www.derp.com/
 
15
 */
 
16
 
 
17
/**
 
18
 * A function.
 
19
 *
 
20
 * @return void
 
21
 */
 
22
function f()
 
23
{
 
24
 
 
25
}
 
26
~~~~~~~~~~