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 UnsplashUsersServiceProvider extends ServiceProvider
{
/**
* Register the application services.
*
* @return void
*/
public function register()
$this->app->bind('UnsplashUsers', function () {
return new \shweshi\LaravelUnsplashWrapper\UnsplashUsers();
});
}