<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/ext/reflection/tests, branch php-5.5.17</title>
<subtitle>git.php.net: repository/php-src.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/'/>
<entry>
<title>Merge branch 'PHP-5.4' into PHP-5.5</title>
<updated>2014-06-08T20:50:41+00:00</updated>
<author>
<name>Stanislav Malyshev</name>
<email>stas@php.net</email>
</author>
<published>2014-06-08T20:50:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=da6abc8db4de42cb8dd4b6c7e13bce339c4b320f'/>
<id>da6abc8db4de42cb8dd4b6c7e13bce339c4b320f</id>
<content type='text'>
* PHP-5.4:
  Remove superfluous echos.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.4:
  Remove superfluous echos.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove superfluous echos.</title>
<updated>2014-06-08T20:50:22+00:00</updated>
<author>
<name>Jeff Welch</name>
<email>whatthejeff@gmail.com</email>
</author>
<published>2014-06-08T08:09:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=5fd7c2b01ddfcf932f364dc7065e7b0dd492655e'/>
<id>5fd7c2b01ddfcf932f364dc7065e7b0dd492655e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-5.4' into PHP-5.5</title>
<updated>2014-02-27T01:32:07+00:00</updated>
<author>
<name>Ferenc Kovacs</name>
<email>tyrael@php.net</email>
</author>
<published>2014-02-27T01:32:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=fd20278fa58f77879124783d3207a7fd6e059199'/>
<id>fd20278fa58f77879124783d3207a7fd6e059199</id>
<content type='text'>
* PHP-5.4:
  fix tests broken by 633f898f1520253d3530fe91fc82f68bca7c4627
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.4:
  fix tests broken by 633f898f1520253d3530fe91fc82f68bca7c4627
</pre>
</div>
</content>
</entry>
<entry>
<title>fix tests broken by 633f898f1520253d3530fe91fc82f68bca7c4627</title>
<updated>2014-02-27T01:31:42+00:00</updated>
<author>
<name>Ferenc Kovacs</name>
<email>tyrael@php.net</email>
</author>
<published>2014-02-27T01:31:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=bd961f3e873f71c1408111da065d94cd0c6527d9'/>
<id>bd961f3e873f71c1408111da065d94cd0c6527d9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-5.4' into PHP-5.5</title>
<updated>2013-12-10T15:09:41+00:00</updated>
<author>
<name>Remi Collet</name>
<email>remi@php.net</email>
</author>
<published>2013-12-10T15:09:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=9f4d1ee51c19c50a60284a5687f247785fd26f6a'/>
<id>9f4d1ee51c19c50a60284a5687f247785fd26f6a</id>
<content type='text'>
* PHP-5.4:
  Fixed Bug #66218 zend_register_functions breaks reflection
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.4:
  Fixed Bug #66218 zend_register_functions breaks reflection
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed Bug #66218 zend_register_functions breaks reflection</title>
<updated>2013-12-10T15:07:16+00:00</updated>
<author>
<name>Remi Collet</name>
<email>remi@php.net</email>
</author>
<published>2013-12-10T15:07:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=3e963f8eb44863ef3d758eabe791190b0fd7bb9a'/>
<id>3e963f8eb44863ef3d758eabe791190b0fd7bb9a</id>
<content type='text'>
Functions registered using zend_register_functions instead of zend_module_entry.functions are not seen on reflection.

Ex: additional_functions from api_module_entry.
Ex: in CLI, dl, cli_set_process_title and cli_get_process_title

Note:
- also affects functions overrided in extension
  (should be be reported in extension, where overrided, not in original extension)
- also allow extension to call zend_register_functions for various list
  (instead of having a single bug list)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Functions registered using zend_register_functions instead of zend_module_entry.functions are not seen on reflection.

Ex: additional_functions from api_module_entry.
Ex: in CLI, dl, cli_set_process_title and cli_get_process_title

Note:
- also affects functions overrided in extension
  (should be be reported in extension, where overrided, not in original extension)
- also allow extension to call zend_register_functions for various list
  (instead of having a single bug list)
</pre>
</div>
</content>
</entry>
<entry>
<title>typo fixes</title>
<updated>2013-07-15T07:23:03+00:00</updated>
<author>
<name>Veres Lajos</name>
<email>vlajos@gmail.com</email>
</author>
<published>2013-07-13T12:37:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=e9a95d78ef7c43bc6b6478b9370047d854b20024'/>
<id>e9a95d78ef7c43bc6b6478b9370047d854b20024</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>typo fixes</title>
<updated>2013-07-15T07:18:57+00:00</updated>
<author>
<name>Veres Lajos</name>
<email>vlajos@gmail.com</email>
</author>
<published>2013-07-13T12:37:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=72085b0e5f2fe6e69a83d8f43f92c5fe0d8bace3'/>
<id>72085b0e5f2fe6e69a83d8f43f92c5fe0d8bace3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'PHP-5.4' into PHP-5.5</title>
<updated>2013-06-20T06:42:30+00:00</updated>
<author>
<name>Remi Collet</name>
<email>remi@php.net</email>
</author>
<published>2013-06-20T06:42:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=60afd3fce4071ba79fbabfb828b12ad1421bd2d0'/>
<id>60afd3fce4071ba79fbabfb828b12ad1421bd2d0</id>
<content type='text'>
* PHP-5.4:
  skip test for bug #64936 when tokenizer not built
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* PHP-5.4:
  skip test for bug #64936 when tokenizer not built
</pre>
</div>
</content>
</entry>
<entry>
<title>skip test for bug #64936 when tokenizer not built</title>
<updated>2013-06-20T06:42:07+00:00</updated>
<author>
<name>Remi Collet</name>
<email>remi@php.net</email>
</author>
<published>2013-06-20T06:42:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=9be591bdb503740ef5d3261422a180e68b9eb3fc'/>
<id>9be591bdb503740ef5d3261422a180e68b9eb3fc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
