1. Go to this page and download the library: Download quizlet/hammock library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
hack
$dog = new Dog();
using (Hammock\mock_object_method($dog, 'fetch', $args ==> 'frisbee')) {
$dog->fetch('ball') === 'frisbee'; // true
} // Original behavior is restored at the end of the `using` block.
$dog->fetch('ball') === 'ball'; // true
hack
$dog = new Dog();
using $fetchSpy = Hammock\spy_object_method($dog, 'fetch');
$dog->fetch('ball') === 'ball'; // true
$fetchSpy->getNumCalls() === 1; // true
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.