Re: [PHP-DEV] Request Feedback for Instance Variable Sugar RFC

2015-03-09 Thread Jacob Bednarz
Hey Shane, The @ symbol in PHP is currently an error control operator[1]. Does that mean you will be reassigning the error control operator to another character? [1]: http://php.net/manual/en/language.operators.errorcontrol.php On Monday, March 9, 2015, Shawn McCool wrote: > I've never submitte

Re: [PHP-DEV] Travis support PHP Nightly builds (PHP 7)

2015-02-25 Thread Jacob Bednarz
I think it would be good to incitate all the frameworks and projects using Travis CI to add nightly to their testing matrix so as to catch bugs in the upcoming PHP 7 version by testing real code and also so as to have as much real code as possible getting ready for PHP 7. I think this is an exce

Re: [PHP-DEV] PHP 7 snapshots?

2015-02-12 Thread Jacob Bednarz
Thanks for the confirmation! On Friday, February 13, 2015, Rasmus Lerdorf wrote: > On 02/12/2015 01:39 PM, Jacob Bednarz wrote: > > Hi Internals, > > > > Late in January Rasmus sent out an email to test the PHP 7 build. I've > > recently completed this with a

[PHP-DEV] PHP 7 snapshots?

2015-02-12 Thread Jacob Bednarz
Hi Internals, Late in January Rasmus sent out an email to test the PHP 7 build. I've recently completed this with a few of our applications locally however now I am looking to test these changes on one of our isolated development environments (yes, I'm aware of the risks and willing to take t

Re: [PHP-DEV] Cleaning up dangling whitespace

2015-01-06 Thread Jacob Bednarz
I did not PHPCS supports C. Or am I missing something? Nope, you are spot on :) - I read this as "let's clean up our repositories" not just php-src (which reading back through was my misinterpretation). Do you have a tool in mind? I see there are a few like indent[1], uncrustify[2] and as

Re: [PHP-DEV] Cleaning up dangling whitespace

2015-01-05 Thread Jacob Bednarz
Hey That reminds me something I was wondering, would it be possible to have a kind of CS check on push? :) Yep - PHPCS[1] is quite good, easy to configure and has good editor integrations in the community. The automated code standards check can be achieved using git-hooks[2] which is already

Re: [PHP-DEV] Preventing users from voting multiple times on a single bug

2014-12-31 Thread Jacob Bednarz
This should probably go to php-webmaster@ Thanks! Next time I will be sure to fire it that way instead of here. -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] Preventing users from voting multiple times on a single bug

2014-12-31 Thread Jacob Bednarz
e that would like to review this one for me. Thanks again, Jacob.From 90b07aee49ea4227c82f80a0136e21695126633b Mon Sep 17 00:00:00 2001 From: Jacob Bednarz Date: Wed, 31 Dec 2014 07:41:55 +1000 Subject: [PATCH] Prevent users from adding multiple votes on a single bug --- www/bug.php | 3 ++

Re: [PHP-DEV] Bugfest

2014-12-29 Thread Jacob Bednarz
My previous suggestion was to have a contributors page and it will rank people based on bug fixes. There appears to be a trend emerging where frameworks are making this more of a feature on their sites and there's nothing people enjoy more than getting recognition for their effort - even if

[PHP-DEV] VCS Account Request: jacob

2014-12-27 Thread Jacob Bednarz
- Triaging bugs, issues and cleaning up bug reports -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Bugfest

2014-12-27 Thread Jacob Bednarz
Well, there isn’t such a label because labels have to be created by people going through and adding that label to bugs. So someone has to look through 4000 bugs. This definitely could be an issue for existing bugs but if it's available when someone creates a bug they could fill it out at tha

Re: [PHP-DEV] Bugfest

2014-12-27 Thread Jacob Bednarz
What do you mean by this? What’s a priority? You can sort by votes, you can filter by status, I’m not sure what you mean with “on a label”. Could you please elaborate? Thanks. Sure - A label can be anything that is used to allow finer searching of issues. For example, I don't have a specific

Re: [PHP-DEV] Bugfest

2014-12-27 Thread Jacob Bednarz
One of the biggest issues I have found with the PHP bug tracker is the inability to filter on tickets and find the low hanging fruit based on a label or a priority. I realise the advanced search allows you to find based on package however this still is not enough. I am quite new to the developm

Re: [PHP-DEV] Line profiler for PHP

2014-12-23 Thread Jacob Bednarz
> > 1. If you want precision, it would slow down your code a lot, as > basically you need to record timing of each opcode, which can be very > expensive. I'm not too concerned about the cost as this would only be running locally and the for the purpose of profiling. The proviso with this would be

[PHP-DEV] Line profiler for PHP

2014-12-23 Thread Jacob Bednarz
Hey, I have been working on some profiling of an application recently and whilst xhprof and xdebug are good to get an overall picture to further break into, I haven’t been able to find a tool for line by line profiling in PHP for a particular file. I have done a bit of research and found rblinep