Jānis Lācis

Results 10 issues of Jānis Lācis

My knowledge about the Redis Sentinel is very limited right now, so, this is probably going to be just a question about how to use this package properly... I have...

Hi, I'm fallowing the documentation about attribute hydration and found out that either there is a bug (the method does not exist) or the documentation is wrong. In [docs](https://laraveljsonapi.io/docs/2.0/schemas/attributes.html#attribute-hydration) there...

documentation

I suggest to implement [IDisposable](https://docs.microsoft.com/en-us/dotnet/api/system.idisposable). It is simpler to disconnect, if ```IDisposable``` is implemented. When code gets complicated, you have two options: * call ```Disconnect()``` in multiple places * wrap...

In PostgreSQL the booleans are shown as strings "t" and "f" (null's are ok) and they are not getting casted to PHP's booleans. Fix would be something like this: ```...

It would be great to have Enum type in PostgreSql.

I hope to see an array support for PostgreSQL. Read more about Arrays here: http://www.postgresql.org/docs/9.1/static/arrays.html

Modules are being loaded twice in `bootstrap.php` file: ``` php /** * Enable modules. Modules are referenced by a relative or absolute path. */ Kohana::modules(Kohana::$config->load('modules')->as_array()); ``` This occurs in two...

Look at `bootstrap.php` https://github.com/Zeelot/kohana-projecttemplate/blob/1.0/develop/application/bootstrap.php#L155 ``` php /** * Include the routes for the current environment. */ if ($routes = Kohana::find_file('routes', Kohana::$environment)) { include $routes; } ``` I think that `Kohana::$environment`...

Normally you can translate the text inside your View_Something class and include that text in your template by using variables. But I find it useful to write the text right...

It would be great, if KOstache supported i18n (internationalization). It's very easy to implement. Just add this function to the Kohana_Kostache class: ``` php