someMethod(); // ERROR: Invalid array access (multiple levels) $emptyArray = []; echo $emptyArray['key']['nested']['deep']; // Valid function call requiresTwoArgs("hello", "world"); // HINT/WARNING: Unreachable code (some configs) function hasDeadCode(): string { return "done"; echo "This is unreachable"; // Dead code } echo "Test complete!\n";