I'm new to Phalcon but so far it's everything I could have asked for. I am, however, experiencing a strange and frustrating issue where my asset files either have strange characters at the end, or are incomplete when using
$assets->join(true)
This means javascript will report
Uncaught SyntaxError: Unexpected end of input 
e.g. /public/js/scripts.js
$(document).ready(function(){
    $('.datetimepicker').datetimepicker({
        format: 'yyyy-MM-dd hh:mm:ss',
        language: 'en'
    }); 
});�����������������������������������������������������
- I have tried deleting and recreating the file.
 - I have tried different editors (Netbeans, Sublime, Vim).
 - I have tried restarting NGINX.
 - I have tried restarting my vagrant.
 
Any help/thoughts appreciated!