for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace shweshi\LaravelUnsplashWrapper\Providers;
use Illuminate\Support\ServiceProvider;
class UnsplashCollectionsServiceProvider extends ServiceProvider
{
/**
* Register the application services.
*
* @return void
*/
public function register()
$this->app->bind('UnsplashCollections', function () {
return new \shweshi\LaravelUnsplashWrapper\UnsplashCollections();
});
}