PHP code example of cyvelnet / laravel5-inputpipe
1. Go to this page and download the library: Download cyvelnet/laravel5-inputpipe 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/ */
cyvelnet / laravel5-inputpipe example snippets
php
class CustomPipes extends \Cyvelnet\InputPipe\Pipes {
public function pipeFoo ($data, $parameters) {
// process your logic;
}
public function pipeBar($data, $parameters) {
// process another logic;
}
}