Hydrogen icon indicating copy to clipboard operation
Hydrogen copied to clipboard

Hydrogen is a PHP 5.3+ performance and portability library

Results 8 Hydrogen issues
Sort by recently updated
recently updated
newest added

use hydrogen\view\engines\hydrogen\exceptions\NoSuchBlockException; was missing, while being used on line 170.

FYI - It's just about the view/engines/hydrogen/filters/FilesizeformatFilter.php ...I don't know why my last rebase didn't work :( just do it manually I guess... (FilesizeformatFilter would throw an exception when the...

Now that it's back to where it should be, and I'm no longer stupidly hacking master for app specific stuff... I can create pull requests. Anyways, fixed my bug again,...

Hey Tom! This is ClosetDeveloper from webdevRefinery and have been experimenting with some additional filters. As my screen name on your forums suggests, I'm no expert, so hopefully my simple...

I just ran into an issue where my queries on one table would always fail, although they were managed through an SQLBean. Turns out I had a field in my...

Hey Tom, some time ago you mentioned that one of the reasons for Hydrogen not having a "proper" documentation (apart from the inline documentation) was the lack of documentation generators...

Hey Tom, I've extended the "Setting up Hydrogen on your server" page... accidentally I did it on my own wiki: https://github.com/gibbonweb/Hydrogen/wiki/Setting-up-Hydrogen-on-your-server Is there a convenient way of synchronizing this to...

route caching currently doesn't seem to take HTTP Verb into account For example ``` php $router->post('/(:controller(/:function(/:*args)))', array('controller' => 'home','function' => 'index'), array('controller' => '\vespora\controllers\main\%{controller|capfirst}Controller', 'function' => '%{function|lower}_post')); $router->request('/(:controller(/:function(/:*args)))', array('controller' =>...