📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-30 02:46:44
📂
/
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
squizlabs
/
php_codesniffer
/
src
/
Standards
/
Generic
/
Docs
/
Files
✏️
Editing: OneInterfacePerFileStandard.xml
<documentation title="One Interface Per File"> <standard> <![CDATA[ There should only be one interface defined in a file. ]]> </standard> <code_comparison> <code title="Valid: Only one interface in the file."> <![CDATA[ <?php <em>interface Foo</em> { } ]]> </code> <code title="Invalid: Multiple interfaces defined in one file."> <![CDATA[ <?php <em>interface Foo</em> { } <em>interface Bar</em> { } ]]> </code> </code_comparison> </documentation>
💾 Save Changes
❌ Cancel