1. Go to this page and download the library: Download vtgianni/oops-bundle 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/ */
vtgianni / oops-bundle example snippets
use VTGianni\OopsBundle\Service\OopsClient;
class MyService
{
private $oopsClient;
public function __construct(OopsClient $oopsClient)
{
$this->oopsClient = $oopsClient;
}
}
use VTGianni\OopsBundle\Service\OopsService;
class MyService
{
private $oopsService;
public function __construct(OopsService $oopsService)
{
$this->oopsService = $oopsService;
}
}