Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: Mockable.php
<?php class Mockable { public $constructorCalled = false; public $cloned = false; public function __construct() { $this->constructorCalled = false; } public function foo() { return true; } public function bar() { return true; } public function __clone() { $this->cloned = true; } }