Skip to content

Instantly share code, notes, and snippets.

View rodion-arr's full-sized avatar
💻
while (awake()) { code() }

Rodion Abdurakhimov rodion-arr

💻
while (awake()) { code() }
View GitHub Profile
@tommyready
tommyready / PDOService.php
Last active June 7, 2020 21:57
Laravel 5 Service that Wraps PDO to call StoredProcedure with Multiple ResultSets and Return Arrays of Data
<?php
namespace App\Services;
class PDOService {
private $connection;
public function __construct($connection) {
$this->connection = $connection;