for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bludata\Lumen\Providers;
use Illuminate\Support\ServiceProvider;
class CustomConnectionSqlanywhereServiceProvider extends ServiceProvider
{
public function register()
}
public function boot()
app('LaravelDoctrine\ORM\Configuration\Connections\ConnectionManager')->extend('sqlanywhere', function () {
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.
return config('database.connections.sqlanywhere');
});
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.