Eli White

Results 24 issues of Eli White

There is currently no support for longs as a type. Using the new type system which ties everything to PHP types might make things difficult since long ints are represented...

So this is one of those cases where PHP is just plain weird / annoying. In \Spot\Entity::fields($entityName) you have the check: if(!is_subclass_of($entityName, '\Spot\Entity')) { throw new \Spot\Exception($entityName . " must...

Some of our browserify bundles take over 45 seconds to build. While watchify is great for development, building all of our bundles is a significant amount of time on our...

It would be nice to have a way to test placeholders. When generating placeholders in a loop like ``` $placeholder-name: 'foo'; @for $i from 1 through 4 { %#{$placeholder-name}-#{$i} {...