~ubuntu-branches/ubuntu/saucy/php-codesniffer/saucy

« back to all changes in this revision

Viewing changes to PHP_CodeSniffer-1.0.1/CodeSniffer/Standards/PEAR/Tests/NamingConventions/ValidClassNameUnitTest.inc

  • Committer: Bazaar Package Importer
  • Author(s): Jack Bates
  • Date: 2008-10-01 17:39:43 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20081001173943-2dy06n1e8zwyw1o8
Tags: 1.1.0-1
* New upstream release
* Acknowledge NMU, thanks Jan

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
 
3
 
class Valid_Name {}
4
 
 
5
 
class invalid_Name {}
6
 
 
7
 
class invalid_name {}
8
 
 
9
 
class Invalid_name {}
10
 
 
11
 
class VALID_Name {}
12
 
 
13
 
class VALID_NAME {}
14
 
 
15
 
class VALID_Name {}
16
 
 
17
 
class ValidName {}
18
 
 
19
 
class _Invalid_Name {}
20
 
 
21
 
 
22
 
interface Valid_Name {}
23
 
 
24
 
interface invalid_Name {}
25
 
 
26
 
interface invalid_name {}
27
 
 
28
 
interface Invalid_name {}
29
 
 
30
 
interface VALID_Name {}
31
 
 
32
 
interface VALID_NAME {}
33
 
 
34
 
interface VALID_Name {}
35
 
 
36
 
interface ValidName {}
37
 
 
38
 
interface _Invalid_Name {}
39
 
 
40
 
?>