Anıl ÜNAL
Anıl ÜNAL
Hi, I just downloaded the starter kid and came across this: ``` @if ( ! Auth::check()) You need to be logged in to add comments. Click here to login into...
Hey, I have a code like this: ``` $klein->respond(function ($request, $response, $service, $app) { // Bunch of stuff }); ``` I want to pass them into a class (not controllers)...
Hi, I was wondering if the following use is supported. ``` $klein->app()->register('browser.language', function () { return new Browser\Language; }); $app->browser->language // Browser\Language ``` If not, would anyone want that functionality...
Hi, I have a route group like: ``` $klein->with('/api/something/', function () use ($klein) { // Auth here $klein->respond('GET', 'test', function($req, $res, $service, $app) { ... }); }); ``` I have...
I used JSLint on your JS to fix potential issues. 1. Cleaned trailing whitespaces. 2. Removed unnecessary semicolons. 3. Added necessary semicolons. 4. 0 value should be checked using ===...