|
| 1 | +<?php |
| 2 | + |
| 3 | +namespace TinyPixel\BlockCompose; |
| 4 | + |
| 5 | +use Roots\Acorn\ServiceProvider; |
| 6 | + |
| 7 | +class BaseServiceProvider extends ServiceProvider |
| 8 | +{ |
| 9 | + public function register() |
| 10 | + { |
| 11 | + } |
| 12 | + |
| 13 | + public function boot() |
| 14 | + { |
| 15 | + } |
| 16 | + |
| 17 | + /** |
| 18 | + * Bind all classes within an App dir |
| 19 | + * to the IOC |
| 20 | + **/ |
| 21 | + public function bindFromDir($dir) |
| 22 | + { |
| 23 | + $this->bound = collect(); |
| 24 | + |
| 25 | + collect(glob($this->app->basePath('app/'. $dir . '/*.php')))->map( |
| 26 | + function ($file) use ($dir) { |
| 27 | + $src = $this->formatBindings($dir, $file); |
| 28 | + print_r($src); |
| 29 | + $this->app->bind($src->handle, function () use ($src) { |
| 30 | + return new $src->class; |
| 31 | + }); |
| 32 | + $this->bound->push($src->handle); |
| 33 | + } |
| 34 | + ); |
| 35 | + |
| 36 | + $this->withBound(); |
| 37 | + } |
| 38 | + |
| 39 | + /** |
| 40 | + * Given a file and a containing directory, |
| 41 | + * format the class to be bound and the handle |
| 42 | + * it is to be bound to. |
| 43 | + * |
| 44 | + **/ |
| 45 | + public function formatBindings($class, $file) |
| 46 | + { |
| 47 | + return (object) [ |
| 48 | + 'handle' => strtolower($class).'.'.strtolower(basename($file, '.php')), |
| 49 | + 'class' => '\\App\\'.$class.'\\'. basename($file, '.php'), |
| 50 | + ]; |
| 51 | + } |
| 52 | + |
| 53 | + /** |
| 54 | + * Perform a boot operation on each |
| 55 | + * of the bound classes. |
| 56 | + * |
| 57 | + */ |
| 58 | + public function withBound() |
| 59 | + { |
| 60 | + } |
| 61 | +} |
0 commit comments