PHP code example of setono / dao-bundle
1. Go to this page and download the library: Download setono/dao-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/ */
setono / dao-bundle example snippets
$bundles = [
// ...
Setono\DAOBundle\SetonoDAOBundle::class => ['all' => true],
// ...
];
use Setono\DAO\Client\ClientInterface;
final class YourService
{
private $client;
public function __construct(ClientInterface $client)
{
$this->client = $client;
}
}