Skip to content

Instantly share code, notes, and snippets.

View andrey-helldar's full-sized avatar
🧙‍♂️
It's never too late to get better

Andrey Helldar andrey-helldar

🧙‍♂️
It's never too late to get better
View GitHub Profile
@andrey-helldar
andrey-helldar / AppServiceProvider.php
Last active June 29, 2018 16:26 — forked from Ellrion/FlashMessageSender.php
Flash messages min service for Laravel (only backend)
<?php
namespace App\Providers;
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
@andrey-helldar
andrey-helldar / helper.php
Created December 6, 2017 14:41 — forked from Ellrion/helper.php
Сортировка ассоциативного массива в порядке указанном массивом ключей.
<?php
if (!function_exists('array_sort_by_keys_array')) {
/**
* Сортировка ассоциативного массива в порядке указанном массивом ключей.
*
* @param array $array Входной массив.
* @param array $sorter Массив ключей в нужном порядке.
*
* @return bool