File: token-constant.php

package info (click to toggle)
phpab 1.29.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 856 kB
  • sloc: php: 3,467; xml: 162; makefile: 28
file content (8 lines) | stat: -rw-r--r-- 172 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
<?php
namespace foo;

class baz {
    private const NAMESPACE = 'some string';
    private const OTHER = 'other string';
    private const EXTENDS = 'some class string';
}