<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/php-git.git/tests/classes, branch php-5.4.4</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>trivial change try to ci a "fake" merge</title>
<updated>2012-03-30T12:50:45+00:00</updated>
<author>
<name>Xinchen Hui</name>
<email>laruence@gmail.com</email>
</author>
<published>2012-03-30T12:50:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=14fdb8bf0a0706385c2ac1ae285398908001a3fc'/>
<id>14fdb8bf0a0706385c2ac1ae285398908001a3fc</id>
<content type='text'>
seems now a empty merge will not be accepted by pre-receive-hook
  "remote: We cannot figure out what you comitted!"
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
seems now a empty merge will not be accepted by pre-receive-hook
  "remote: We cannot figure out what you comitted!"
</pre>
</div>
</content>
</entry>
<entry>
<title>- Fix test</title>
<updated>2011-11-26T17:35:19+00:00</updated>
<author>
<name>Felipe Pena</name>
<email>felipe@php.net</email>
</author>
<published>2011-11-26T17:35:19+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=1bd15bbd7d553e7680d5ae03b7a416d16ba9444f'/>
<id>1bd15bbd7d553e7680d5ae03b7a416d16ba9444f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Changed silent conversion of array to string to produce a notice. (Patrick)</title>
<updated>2011-10-21T06:08:47+00:00</updated>
<author>
<name>Stanislav Malyshev</name>
<email>stas@php.net</email>
</author>
<published>2011-10-21T06:08:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=d81ea16ef14735b97f22702ca1a78c3674fd987e'/>
<id>d81ea16ef14735b97f22702ca1a78c3674fd987e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve the warning message of incompatible arguments. (#55719)</title>
<updated>2011-09-23T15:08:11+00:00</updated>
<author>
<name>Xinchen Hui</name>
<email>laruence@php.net</email>
</author>
<published>2011-09-23T15:08:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=c58f254354666c312e02e5069ebb87687b44df71'/>
<id>c58f254354666c312e02e5069ebb87687b44df71</id>
<content type='text'>
And fix tests related.

</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
And fix tests related.

</pre>
</div>
</content>
</entry>
<entry>
<title>Silently casting an empty string, null or false into an object by adding a property</title>
<updated>2010-12-31T16:57:45+00:00</updated>
<author>
<name>Scott MacVicar</name>
<email>scottmac@php.net</email>
</author>
<published>2010-12-31T16:57:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=6144da7e351545158db3fad647b818b1027354f7'/>
<id>6144da7e351545158db3fad647b818b1027354f7</id>
<content type='text'>
is pretty non-intuitive. If the same value was 1 or true you get a warning and it halts.

Since we can't break BC completely (yet) lets bump this from E_STRICT.

Also added a new section to UPGRADING for engine changes.

&lt;?php
$x = '';
// $x = null;
// $x = false;
$x-&gt;baz = 1;
var_dump($x);

$y = 1;
$y-&gt;baz = 1;
var_dump($y);


</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
is pretty non-intuitive. If the same value was 1 or true you get a warning and it halts.

Since we can't break BC completely (yet) lets bump this from E_STRICT.

Also added a new section to UPGRADING for engine changes.

&lt;?php
$x = '';
// $x = null;
// $x = false;
$x-&gt;baz = 1;
var_dump($x);

$y = 1;
$y-&gt;baz = 1;
var_dump($y);


</pre>
</div>
</content>
</entry>
<entry>
<title>- Fix tests for \0 patch in PHP 5.3.</title>
<updated>2010-11-22T05:10:14+00:00</updated>
<author>
<name>Gustavo André dos Santos Lopes</name>
<email>cataphract@php.net</email>
</author>
<published>2010-11-22T05:10:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=8d82e961034f836153c54ba52f154609d9d4200b'/>
<id>8d82e961034f836153c54ba52f154609d9d4200b</id>
<content type='text'>
- Fix constants_error_004.phpt (closes bug #51901)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Fix constants_error_004.phpt (closes bug #51901)
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixed test</title>
<updated>2010-05-26T11:00:05+00:00</updated>
<author>
<name>Ilia Alshanetsky</name>
<email>iliaa@php.net</email>
</author>
<published>2010-05-26T11:00:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=16c90b0a2dabed21e94ced1f896b4a6e4fbce8bd'/>
<id>16c90b0a2dabed21e94ced1f896b4a6e4fbce8bd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Fixed tests</title>
<updated>2010-02-13T01:08:04+00:00</updated>
<author>
<name>Jani Taskinen</name>
<email>jani@php.net</email>
</author>
<published>2010-02-13T01:08:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=f9843495d10b0604fb145fa386b962d9a560bdf1'/>
<id>f9843495d10b0604fb145fa386b962d9a560bdf1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>- Fixed tests</title>
<updated>2009-12-04T11:32:39+00:00</updated>
<author>
<name>Felipe Pena</name>
<email>felipe@php.net</email>
</author>
<published>2009-12-04T11:32:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=8afad00a1681de8541d437d0374eae45ae99a1f2'/>
<id>8afad00a1681de8541d437d0374eae45ae99a1f2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove empty sections. Fix bad use of --SKIP--</title>
<updated>2009-07-21T14:02:24+00:00</updated>
<author>
<name>Zoe Slattery</name>
<email>zoe@php.net</email>
</author>
<published>2009-07-21T14:02:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/php-git.git/commit/?id=9ff94c82dfc3d182a000a36ecde50128576b9426'/>
<id>9ff94c82dfc3d182a000a36ecde50128576b9426</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
