📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-02 06:24:37
📂
/ (Root)
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
squizlabs
/
php_codesniffer
/
src
/
Standards
/
MySource
/
Tests
/
Channels
📍 /opt/cpanel/ea-wappspector/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Channels
🔄 Refresh
✏️
Editing: DisallowSelfActionsUnitTest.inc
Read Only
<?php class SomethingActions { private static function _x() { } public static function y() { self::z(); static::z(); SomethingActions::z(); static::_x(); self::a(); static::a(); } public static function z() { } protected static function a() { self::a(); // recursion, yay! self::z(); static::y(); self::b(); echo self::$_myVar; echo static::$yourVar; } } abstract class AbstractEditingScreenModeWidgetActions extends AbstractEditingModeWidgetActions { public static function getScreens($systemName) { }//end getScreens() public static function setHelpScreenTitle() { // This is allowed because we are in an abstract class. $screens = self::getScreens(''); }//end setHelpScreenTitle() }//end class ?>
💾 Save Changes
❌ Cancel