blast icon indicating copy to clipboard operation
blast copied to clipboard

Create DataStore facade

Open ptrckvzn opened this issue 3 years ago • 0 comments

This PR creates a Facade DataStore. I changed the way the data sore loads its content. Instead of loading all files in data/*.php on init, it will try to load each file as they are requested, in order to be able to use the data store from within data files and prevent recursive loads.

The change to the data store should be optimized a bit further.

<?php

use A17\Blast\Facades\DataStore;

$tag = DataStore::get('tag.base');

return [
    'artwork' => [

ptrckvzn avatar Feb 01 '22 18:02 ptrckvzn