Subversion-Projekte lars-tiefland.laravel_shop

Revision

Revision 621 | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 621 Revision 991
Zeile 70... Zeile 70...
70
    {
70
    {
71
        $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationHandler();
71
        $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationHandler();
72
    }
72
    }
73
}
73
}
74
EOT;
74
EOT;
75
 
-
 
76
    private const MOCKED_CLONE_METHOD_WITHOUT_RETURN_TYPE_TRAIT = <<<'EOT'
75
    private const MOCKED_CLONE_METHOD_WITHOUT_RETURN_TYPE_TRAIT = <<<'EOT'
77
namespace PHPUnit\Framework\MockObject;
76
namespace PHPUnit\Framework\MockObject;
Zeile 78... Zeile 77...
78
 
77
 
79
trait MockedCloneMethodWithoutReturnType
78
trait MockedCloneMethodWithoutReturnType
Zeile 82... Zeile 81...
82
    {
81
    {
83
        $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationHandler();
82
        $this->__phpunit_invocationMocker = clone $this->__phpunit_getInvocationHandler();
84
    }
83
    }
85
}
84
}
86
EOT;
85
EOT;
87
 
-
 
88
    private const UNMOCKED_CLONE_METHOD_WITH_VOID_RETURN_TYPE_TRAIT = <<<'EOT'
86
    private const UNMOCKED_CLONE_METHOD_WITH_VOID_RETURN_TYPE_TRAIT = <<<'EOT'
89
namespace PHPUnit\Framework\MockObject;
87
namespace PHPUnit\Framework\MockObject;
Zeile 90... Zeile 88...
90
 
88
 
91
trait UnmockedCloneMethodWithVoidReturnType
89
trait UnmockedCloneMethodWithVoidReturnType
Zeile 96... Zeile 94...
96
 
94
 
97
        parent::__clone();
95
        parent::__clone();
98
    }
96
    }
99
}
97
}
100
EOT;
-
 
101
 
98
EOT;
102
    private const UNMOCKED_CLONE_METHOD_WITHOUT_RETURN_TYPE_TRAIT = <<<'EOT'
99
    private const UNMOCKED_CLONE_METHOD_WITHOUT_RETURN_TYPE_TRAIT = <<<'EOT'
Zeile 103... Zeile 100...
103
namespace PHPUnit\Framework\MockObject;
100
namespace PHPUnit\Framework\MockObject;
104
 
101