1. Go to this page and download the library: Download jpuck/phpdev 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/ */
use jpuck\phpdev\Exceptions\Unimplemented;
class MyClass {
public function foo() {
// completed code
return true;
}
/**
* @throws Unimplemented
*/
public function bar() {
// work in progress
throw new Unimplemented(__METHOD__);
return true;
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.