Skip to content

Instantly share code, notes, and snippets.

@jubianchi
Last active December 17, 2015 14:09
Show Gist options
  • Save jubianchi/5622841 to your computer and use it in GitHub Desktop.
Save jubianchi/5622841 to your computer and use it in GitHub Desktop.
AOP-PHP compilation under OS X 10.8.3 with PHP 5.4.11
<?php
aop_add_before('printf()', function($jp) {
echo 'Hey, I\'m being magically called before printf !' . PHP_EOL;
});
aop_add_after('printf()', function($jp) {
echo 'AOP-PHP is really awesome !' . PHP_EOL;
});
aop_add_around('date()', function($jp) {
$hour = date('H');
if($hour < 5 || $hour > 23) {
return 'time to go to sleep';
}
return $jp->process();
});
printf('What time is it ? It is ' . date('H:i:s') . PHP_EOL);
echo 'Do not forget to check out https://github.com/AOP-PHP/AOP to learn more about all this magic ;)' . PHP_EOL;
$ php -v && php -m
PHP 5.4.11 (cli) (built: Apr 1 2013 22:56:54)
Copyright (c) 1997-2013 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies
with Xdebug v2.2.2, Copyright (c) 2002-2013, by Derick Rethans
[PHP Modules]
aop
Core
ctype
date
dom
ereg
hash
json
libxml
pcre
Phar
posix
Reflection
session
SimpleXML
SPL
standard
tokenizer
xdebug
xml
xsl
[Zend Modules]
Xdebug
$ bin/atoum --test-it
Failure (175 tests, 1267/1399 methods, 0 void method, 13 skipped methods, 119 uncompleted methods, 6 failures, 303 errors, 0 exception) !
> There are 6 failures:
=> mageekguy\atoum\tests\units\asserter::test__get():
In file /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on line 34, mageekguy\atoum\asserters\object() failed: null is not an object
=> mageekguy\atoum\tests\units\asserter::test__call():
In file /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on line 44, mageekguy\atoum\asserters\object() failed: null is not an object
=> mageekguy\atoum\tests\units\asserter::testReset():
In file /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on line 55, mageekguy\atoum\asserters\object() failed: null is not an object
=> mageekguy\atoum\tests\units\asserter::testSetWithTest():
In file /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on line 101, mageekguy\atoum\asserters\object() failed: null is not an object
=> mageekguy\atoum\tests\units\asserter::testSetWithArguments():
In file /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on line 110, mageekguy\atoum\asserters\object() failed: null is not an object
=> mageekguy\atoum\tests\units\scripts\runner::testSetNamespaces():
In file /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/runner.php on line 404, mageekguy\atoum\asserters\object() failed: null is not an object
> There are 303 errors:
=> mageekguy\atoum\tests\units\asserter::testSetLocale():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/asserter.php on line 59:
Using $this when not in object context
=> mageekguy\atoum\tests\units\asserter::test__construct():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/asserter.php on line 79:
Using $this when not in object context
=> mageekguy\atoum\tests\units\asserter::testGetTypeOf():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/asserter.php on line 59:
Using $this when not in object context
=> mageekguy\atoum\tests\units\asserter::testSetGenerator():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/asserter.php on line 71:
Using $this when not in object context
=> mageekguy\atoum\tests\units\asserter::testGetLocale():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/asserter.php on line 66:
Using $this when not in object context
=> mageekguy\atoum\tests\units\asserter::test__get():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on line 32, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\asserter::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on line 34, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 63:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\asserter::__get() cannot be called statically
=> mageekguy\atoum\tests\units\asserter::test__call():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on line 42, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\asserter::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on line 44, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 77:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\asserter::__call() cannot be called statically
=> mageekguy\atoum\tests\units\asserter::testReset():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on line 53, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\asserter::__construct() cannot be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on line 55, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 90:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\asserter::reset() should not be called statically
==> Error E_NOTICE in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on line 55, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/asserter.php on line 54:
Undefined variable: this
=> mageekguy\atoum\tests\units\asserter::testSetWithTest():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on line 99, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\asserter::__construct() cannot be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on line 101, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 168:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\asserter::setWithTest() should not be called statically
==> Error E_NOTICE in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on line 101, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/asserter.php on line 114:
Undefined variable: this
=> mageekguy\atoum\tests\units\asserter::testSetWithArguments():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on line 108, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\asserter::__construct() cannot be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on line 110, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 181:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\asserter::setWithArguments() should not be called statically
==> Error E_NOTICE in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserter.php on line 110, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/asserter.php on line 124:
Undefined variable: this
=> mageekguy\atoum\tests\units\asserters\adapter::testCall():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/adapter.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/asserters/adapter.php on line 131:
Using $this when not in object context
=> mageekguy\atoum\tests\units\asserters\adapter::testWithArguments():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/adapter.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/asserters/adapter.php on line 153:
Using $this when not in object context
=> mageekguy\atoum\tests\units\asserters\adapter::testWithoutAnyArgument():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/adapter.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/asserters/adapter.php on line 174:
Using $this when not in object context
=> mageekguy\atoum\tests\units\asserters\adapter::testWithAnyArguments():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/adapter.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/asserters/adapter.php on line 153:
Using $this when not in object context
=> mageekguy\atoum\tests\units\asserters\adapter\call\adapter::test__call():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/adapter/call/adapter.php on line 43, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\asserters\adapter::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\asserters\adapter\call\mock::test__call():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/adapter/call/mock.php on line 42, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\asserters\adapter::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\asserters\adapter\call\mock::test__toString():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/adapter/call/mock.php on line 59, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\asserters\adapter::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\asserters\mock::testWithAtLeastArguments():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/asserters/mock.php on line 183:
Using $this when not in object context
=> mageekguy\atoum\tests\units\asserters\mock::testCall():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/asserters/mock.php on line 165:
Using $this when not in object context
=> mageekguy\atoum\tests\units\asserters\mock::testWithArguments():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/asserters/mock.php on line 183:
Using $this when not in object context
=> mageekguy\atoum\tests\units\asserters\mock::testWithAnyArguments():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/asserters/mock.php on line 183:
Using $this when not in object context
=> mageekguy\atoum\tests\units\asserters\mock::testWithoutAnyArgument():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/asserters/mock.php on line 218:
Using $this when not in object context
=> mageekguy\atoum\tests\units\asserters\mock::testReset():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/controller.php on line 121:
Using $this when not in object context
=> mageekguy\atoum\tests\units\asserters\mock::testSetWith():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 71, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\mock::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\asserters\mock::testWasCalled():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 86, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\mock::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\asserters\mock::testWasNotCalled():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 112, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\mock::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\asserters\mock::testOnce():
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 428, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 431, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 438, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 453, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 465, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 466, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 70:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::bar() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 491, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 70:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::bar() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 492, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 498, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
=> mageekguy\atoum\tests\units\asserters\mock::testTwice():
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 525, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 530, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 533, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 544, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 549, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 552, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 569, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 573, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 576, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 577, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 70:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::bar() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 582, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 583, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 70:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::bar() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 594, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 70:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::bar() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 595, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 600, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 606, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 611, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 612, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 70:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::bar() should not be called statically
=> mageekguy\atoum\tests\units\asserters\mock::testThrice():
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 637, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 642, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 647, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 650, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 661, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 666, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 671, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 674, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 691, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 696, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 701, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 705, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 706, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 70:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::bar() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 711, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 712, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 70:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::bar() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 717, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 718, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 70:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::bar() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 729, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 70:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::bar() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 730, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 735, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 70:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::bar() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 736, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 741, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 747, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 752, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 757, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 758, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 70:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::bar() should not be called statically
=> mageekguy\atoum\tests\units\asserters\mock::testAtLeastOnce():
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 783, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 786, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 796, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
=> mageekguy\atoum\tests\units\asserters\mock::testExactly():
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 826, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 831, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 834, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 845, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 850, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 855, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 858, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 870, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 83:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::fooWithSeveralArguments() should not be called statically
=> mageekguy\atoum\tests\units\asserters\mock::testNever():
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 905, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 914, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 919, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock.php on line 924, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\dummy::foo() should not be called statically
=> mageekguy\atoum\tests\units\asserters\mock\call\adapter::test__call():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock/call/adapter.php on line 43, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\asserters\mock::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\asserters\mock\call\mock::test__call():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock/call/mock.php on line 47, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\asserters\mock::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\asserters\mock\call\mock::testGetFirstCall():
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock/call/mock.php on line 144, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\mock\call\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock/call/mock.php on line 147, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\mock\call\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock/call/mock.php on line 149, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\mock\call\dummy::foo() should not be called statically
=> mageekguy\atoum\tests\units\asserters\mock\call\mock::testGetLastCall():
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock/call/mock.php on line 166, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\mock\call\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock/call/mock.php on line 169, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\mock\call\dummy::foo() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/asserters/mock/call/mock.php on line 171, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 57:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\asserters\mock\call\dummy::foo() should not be called statically
=> mageekguy\atoum\tests\units\cli\colorizer::testColorize():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/cli/colorizer.php on line 101, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\cli::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\cli\progressBar::testRefresh():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/cli/progressBar.php on line 57, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\cli::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\configurator::test__call():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/configurator.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/scripts/runner.php on line 48:
Using $this when not in object context
=> mageekguy\atoum\tests\units\mock\controller::test__set():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/mock/controller.php on line 56, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\mock\foo::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/mock/controller.php on line 63, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\mock\foo::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\mock\controller::test__unset():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/mock/controller.php on line 128, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method ReflectionClass::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\mock\controller::testMethodsMatching():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/mock/controller.php on line 199, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\mock\foo::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\mock\controller::testReset():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/mock/controller.php on line 469, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\mock\controller::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\mock\controller\iterator::test__set():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/mock/controller/iterator.php on line 47, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\mock\controller\foo::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\mock\controller\iterator::testGetMethods():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/mock/controller/iterator.php on line 123, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\mock\controller\foo::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\mock\controller\iterator::testGetIterator():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/mock/controller/iterator.php on line 144, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\tests\units\mock\controller\foo::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\mock\streams\fs\controller::testIsWritable():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/mock/streams/fs/controller.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/streams/fs/controller.php on line 95:
Using $this when not in object context
=> mageekguy\atoum\tests\units\mock\streams\fs\controller::testIsNotWritable():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/mock/streams/fs/controller.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/streams/fs/controller.php on line 95:
Using $this when not in object context
=> mageekguy\atoum\tests\units\mock\streams\fs\controller::testIsNotExecutable():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/mock/streams/fs/controller.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/streams/fs/controller.php on line 105:
Using $this when not in object context
=> mageekguy\atoum\tests\units\mock\streams\fs\controller::test__construct():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/mock/streams/fs/controller.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/streams/fs/controller.php on line 115:
Using $this when not in object context
=> mageekguy\atoum\tests\units\mock\streams\fs\controller::testIsExecutable():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/mock/streams/fs/controller.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/streams/fs/controller.php on line 105:
Using $this when not in object context
=> mageekguy\atoum\tests\units\mock\streams\fs\controller::testIsNotReadable():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/mock/streams/fs/controller.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/streams/fs/controller.php on line 85:
Using $this when not in object context
=> mageekguy\atoum\tests\units\mock\streams\fs\controller::testGetPermissions():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/mock/streams/fs/controller.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/streams/fs/controller.php on line 85:
Using $this when not in object context
=> mageekguy\atoum\tests\units\mock\streams\fs\controller::testSetAdapter():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/mock/streams/fs/controller.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/streams/fs/controller.php on line 59:
Using $this when not in object context
=> mageekguy\atoum\tests\units\mock\streams\fs\controller::testNotExists():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/mock/streams/fs/controller.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/streams/fs/controller.php on line 73:
Using $this when not in object context
=> mageekguy\atoum\tests\units\mock\streams\fs\controller::testSetPermissions():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/mock/streams/fs/controller.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/streams/fs/controller.php on line 59:
Using $this when not in object context
=> mageekguy\atoum\tests\units\mock\streams\fs\controller::testIsReadable():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/mock/streams/fs/controller.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/streams/fs/controller.php on line 85:
Using $this when not in object context
=> mageekguy\atoum\tests\units\mock\streams\fs\controller::testExists():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/mock/streams/fs/controller.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/streams/fs/controller.php on line 73:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report::testAddField():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/report/field.php on line 23:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report::testResetField():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/report/field.php on line 23:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\field::test__construct():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/field.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/report/field.php on line 35:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\coverage\html::testCleanDestinationDirectory():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/coverage/html.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/report/fields/runner/coverage/html.php on line 358:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\coverage\html::test__toString():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/coverage/html.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/template.php on line 134:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\duration\cli::testHandleEvent():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/duration/cli.php on line 87, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\runner::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\runner\duration\cli::test__toString():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/duration/cli.php on line 98, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\runner::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/duration/cli.php on line 100, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\cli\prompt::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/duration/cli.php on line 102, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\cli\colorizer::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/duration/cli.php on line 104, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\cli\colorizer::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/duration/cli.php on line 106, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\locale::__construct() cannot be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/duration/cli.php on line 138, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 102:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\locale::__() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/duration/cli.php on line 168, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 102:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\locale::__() should not be called statically
=> mageekguy\atoum\tests\units\report\fields\runner\duration\phing::testHandleEvent():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/duration/phing.php on line 86, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\runner::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\runner\duration\phing::test__toString():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/duration/phing.php on line 97, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\runner::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/duration/phing.php on line 99, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\cli\prompt::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/duration/phing.php on line 101, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\cli\colorizer::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/duration/phing.php on line 103, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\cli\colorizer::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/duration/phing.php on line 105, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\locale::__construct() cannot be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/duration/phing.php on line 137, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 102:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\locale::__() should not be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/duration/phing.php on line 167, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 102:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\locale::__() should not be called statically
=> mageekguy\atoum\tests\units\report\fields\runner\errors\cli::test__toString():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/errors/cli.php on line 141, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\runner::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/errors/cli.php on line 142, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\score::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\runner\exceptions\cli::test__toString():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/exceptions/cli.php on line 141, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\runner\score::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\runner\failures\cli::test__toString():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/failures/cli.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/score.php on line 177:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\failures\execute::test__toString():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/failures/execute.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/score.php on line 177:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\failures\execute\macos\macvim::test__toString():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/failures/execute/macos/macvim.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/score.php on line 177:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\failures\execute\macos\phpstorm::test__toString():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/failures/execute/macos/phpstorm.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/score.php on line 177:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\failures\execute\unix\gedit::test__toString():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/failures/execute/unix/gedit.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/score.php on line 177:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\failures\execute\unix\gvim::test__toString():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/failures/execute/unix/gvim.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/score.php on line 177:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\failures\execute\unix\phpstorm::test__toString():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/failures/execute/unix/phpstorm.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/score.php on line 177:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\outputs\cli::test__toString():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/outputs/cli.php on line 140, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\runner\score::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\runner\php\path\cli::testHandleEvent():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/php/path/cli.php on line 81, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\runner\score::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\runner\php\path\cli::test__toString():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/php/path/cli.php on line 95, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\runner\score::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\runner\php\version\cli::testHandleEvent():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/php/version/cli.php on line 99, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\runner\score::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\runner\php\version\cli::test__toString():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/php/version/cli.php on line 114, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\runner\score::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\runner\result\cli::testHandleEvent():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/result/cli.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/runner.php on line 94:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\result\cli::test__toString():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/result/cli.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/score.php on line 88:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\result\logo::test__toString():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/result/logo.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/score.php on line 88:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\result\notifier::testSend():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/result/notifier.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/report/fields/runner/result/notifier.php on line 76:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\result\notifier::test__construct():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/result/notifier.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/report/field.php on line 30:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\result\notifier::testSetAdapter():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/result/notifier.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/report/fields/runner/result/notifier.php on line 64:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\result\notifier::testHandleEvent():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/result/notifier.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/runner.php on line 94:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\result\notifier::testNotify():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/result/notifier.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/report/field.php on line 23:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\result\notifier\image::testGetSetSuccessImage():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/result/notifier/image.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/report/fields/runner/result/notifier/image.php on line 38:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\result\notifier\image::testGetSetFailureImage():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/result/notifier/image.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/report/fields/runner/result/notifier/image.php on line 50:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\result\notifier\image::testGetImage():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/result/notifier/image.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/report/fields/runner/result/notifier/image.php on line 31:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\result\notifier\image::testAsString():
==> Error CATCHABLE FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/result/notifier/image.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/asserters/castToString.php on line 23:
Method mock\mageekguy\atoum\report\fields\runner\result\notifier\image::__toString() must return a string value
=> mageekguy\atoum\tests\units\report\fields\runner\result\notifier\image\growl::testNotify():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/result/notifier/image/growl.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/score.php on line 88:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\result\notifier\image\growl::testHandleEvent():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/result/notifier/image/growl.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/runner.php on line 94:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\result\notifier\image\libnotify::testNotify():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/result/notifier/image/libnotify.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/score.php on line 88:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\result\notifier\image\libnotify::testHandleEvent():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/result/notifier/image/libnotify.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/runner.php on line 94:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\result\notifier\terminal::testHandleEvent():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/result/notifier/terminal.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/runner.php on line 94:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\result\notifier\terminal::testNotify():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/result/notifier/terminal.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/score.php on line 88:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\tap\plan::test__toString():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/tap/plan.php on line 32, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\runner::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\runner\tests\coverage\cli::test__toString():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/tests/coverage/cli.php on line 126, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\runner\score::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\runner\tests\coverage\phing::test__toString():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/tests/coverage/phing.php on line 155, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\runner\score::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\runner\tests\duration\cli::test__toString():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/tests/duration/cli.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/runner.php on line 94:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\tests\duration\cli::testHandleEvent():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/tests/duration/cli.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/runner.php on line 94:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\tests\memory\cli::testHandleEvent():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/tests/memory/cli.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/runner.php on line 94:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\tests\memory\cli::test__toString():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/tests/memory/cli.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/runner.php on line 94:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\tests\memory\phing::testHandleEvent():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/tests/memory/phing.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/runner.php on line 94:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\tests\memory\phing::test__toString():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/tests/memory/phing.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/runner.php on line 94:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\tests\skipped::test__construct():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/tests/skipped.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/report/fields/runner/tests/skipped.php on line 22:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\tests\skipped::testHandleEvent():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/tests/skipped.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/report/field.php on line 45:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\tests\skipped\cli::test__toString():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/tests/skipped/cli.php on line 94, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\runner\score::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\runner\tests\uncompleted\cli::test__toString():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/tests/uncompleted/cli.php on line 154, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\runner\score::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\runner\tests\void::test__construct():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/tests/void.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/report/fields/runner/tests/void.php on line 22:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\runner\tests\void::testHandleEvent():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/runner/tests/void.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/report/field.php on line 45:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\test\duration\cli::testHandleEvent():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/duration/cli.php on line 99, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\score::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/duration/cli.php on line 106, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\test::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\test\duration\cli::test__toString():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/duration/cli.php on line 120, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\score::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/duration/cli.php on line 125, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\test::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\test\duration\phing::testHandleEvent():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/duration/phing.php on line 99, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\score::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/duration/phing.php on line 106, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\test::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\test\duration\phing::test__toString():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/duration/phing.php on line 120, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\score::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/duration/phing.php on line 125, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\test::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\test\event\cli::testHandleEvent():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/event/cli.php on line 52, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\test::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\test\event\cli::test__toString():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/event/cli.php on line 107, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\test::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\test\event\phing::testHandleEvent():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/event/phing.php on line 38, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\test::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\test\event\phing::test__toString():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/event/phing.php on line 93, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\test::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\test\event\tap::testHandleEvent():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/event/tap.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/test.php on line 148:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\test\event\tap::test__toString():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/event/tap.php on line 90, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\test::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\test\event\tap::test__toStringWithFailures():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/event/tap.php on line 160, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\test::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\test\event\tap::test__toStringWithVoid():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/event/tap.php on line 219, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\test::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\test\event\tap::test__toStringWithSkip():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/event/tap.php on line 263, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\test::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\test\event\tap::test__toStringWithErrors():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/event/tap.php on line 309, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\test::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\test\event\tap::test__toStringWithException():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/event/tap.php on line 359, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\test::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\test\event\tap::test__toStringWithUncompleteMethods():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/event/tap.php on line 406, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\test::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\test\event\tap::test__toStringWithRuntimeException():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/event/tap.php on line 445, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\test::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\test\memory\cli::testHandleEvent():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/memory/cli.php on line 83, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\score::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/memory/cli.php on line 89, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\test::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\test\memory\cli::test__toString():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/memory/cli.php on line 102, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\score::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/memory/cli.php on line 108, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\test::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\test\memory\phing::testHandleEvent():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/memory/phing.php on line 83, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\score::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/memory/phing.php on line 89, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\test::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\test\memory\phing::test__toString():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/memory/phing.php on line 102, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\score::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/memory/phing.php on line 108, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\test::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\report\fields\test\run\cli::testHandleEvent():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/run/cli.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/test.php on line 662:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\test\run\cli::test__toString():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/run/cli.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/test.php on line 662:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\test\run\phing::testHandleEvent():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/run/phing.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/test.php on line 662:
Using $this when not in object context
=> mageekguy\atoum\tests\units\report\fields\test\run\phing::test__toString():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/report/fields/test/run/phing.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/test.php on line 662:
Using $this when not in object context
=> mageekguy\atoum\tests\units\reports\asynchronous::testHandleEvent():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/reports/asynchronous.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/report.php on line 48:
Using $this when not in object context
=> mageekguy\atoum\tests\units\reports\asynchronous\clover::testHandleEvent():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/reports/asynchronous/clover.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/writers/file.php on line 61:
Using $this when not in object context
=> mageekguy\atoum\tests\units\reports\asynchronous\xunit::testHandleEvent():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/reports/asynchronous/xunit.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/writers/file.php on line 61:
Using $this when not in object context
=> mageekguy\atoum\tests\units\reports\asynchronous\xunit::testBuild():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/reports/asynchronous/xunit.php on line 92, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method Exception::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\runner::testSetPathAndVersionInScore():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/runner.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/runner/score.php on line 46:
Using $this when not in object context
=> mageekguy\atoum\tests\units\runner::testGetBootstrapFile():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/runner.php on line 281, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\includer::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\runner::testRemoveReport():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/runner.php on line 324, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\report::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/runner.php on line 325, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\report::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\runner::testRemoveReports():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/runner.php on line 352, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\report::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/runner.php on line 353, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\report::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\script::testSetArgumentParser():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/script.php on line 70:
Using $this when not in object context
=> mageekguy\atoum\tests\units\script::testSetOutputWriter():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/script.php on line 89:
Using $this when not in object context
=> mageekguy\atoum\tests\units\script::testSetAdapter():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/script.php on line 46:
Using $this when not in object context
=> mageekguy\atoum\tests\units\script::testSetLocale():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/script.php on line 58:
Using $this when not in object context
=> mageekguy\atoum\tests\units\script::test__construct():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/script.php on line 113:
Using $this when not in object context
=> mageekguy\atoum\tests\units\script::testSetErrorWriter():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/script.php on line 101:
Using $this when not in object context
=> mageekguy\atoum\tests\units\script::testAddArgumentHandler():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/script.php on line 70:
Using $this when not in object context
=> mageekguy\atoum\tests\units\script::testWriteError():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/script.php on line 101:
Using $this when not in object context
=> mageekguy\atoum\tests\units\script::testHelp():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/script.php on line 70:
Using $this when not in object context
=> mageekguy\atoum\tests\units\script::testPrompt():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/script.php on line 89:
Using $this when not in object context
=> mageekguy\atoum\tests\units\script::testWriteLabel():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/script.php on line 89:
Using $this when not in object context
=> mageekguy\atoum\tests\units\script::testClearMessage():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/script.php on line 89:
Using $this when not in object context
=> mageekguy\atoum\tests\units\script::testRun():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/script.php on line 70:
Using $this when not in object context
=> mageekguy\atoum\tests\units\script::testWriteLabels():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/script.php on line 89:
Using $this when not in object context
=> mageekguy\atoum\tests\units\script::testWriteMessage():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/script.php on line 89:
Using $this when not in object context
=> mageekguy\atoum\tests\units\script\arguments\parser::testGetValues():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script/arguments/parser.php on line 53, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\script::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\script\arguments\parser::testGetIterator():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script/arguments/parser.php on line 81, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\script::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\script\arguments\parser::testParse():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script/arguments/parser.php on line 104, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50 in case 'when using $_SERVER':
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\script::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\script\configurable::test__construct():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script/configurable.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/script.php on line 113:
Using $this when not in object context
=> mageekguy\atoum\tests\units\script\configurable::testSetIncluder():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script/configurable.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/script/configurable.php on line 26:
Using $this when not in object context
=> mageekguy\atoum\tests\units\script\configurable::testUseConfigFile():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script/configurable.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/script/configurable.php on line 45:
Using $this when not in object context
=> mageekguy\atoum\tests\units\script\configurable::testUseDefaultConfigFiles():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/script/configurable.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/script/configurable.php on line 59:
Using $this when not in object context
=> mageekguy\atoum\tests\units\scripts\builder::testCheckUnitTests():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/builder.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/scripts/builder.php on line 141:
Using $this when not in object context
=> mageekguy\atoum\tests\units\scripts\builder::testCreatePhar():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/builder.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/scripts/builder.php on line 76:
Using $this when not in object context
=> mageekguy\atoum\tests\units\scripts\builder::testRun():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/builder.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/scripts/builder.php on line 268:
Using $this when not in object context
=> mageekguy\atoum\tests\units\scripts\builder::testWriteInErrorDirectory():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/builder.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/scripts/builder/vcs.php on line 72:
Using $this when not in object context
=> mageekguy\atoum\tests\units\scripts\builder\vcs\svn::testCleanWorkingDirectory():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/builder/vcs/svn.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/scripts/builder/vcs.php on line 38:
Using $this when not in object context
=> mageekguy\atoum\tests\units\scripts\builder\vcs\svn::testSetExportDirectory():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/builder/vcs/svn.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/scripts/builder/vcs.php on line 38:
Using $this when not in object context
=> mageekguy\atoum\tests\units\scripts\builder\vcs\svn::testExportRepository():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/builder/vcs/svn.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/scripts/builder/vcs/svn.php on line 47:
Using $this when not in object context
=> mageekguy\atoum\tests\units\scripts\phar\generator::testWriteMessage():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/phar/generator.php on line 187, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\writers\std\out::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\scripts\phar\generator::testWriteError():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/phar/generator.php on line 200, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\writers\std\err::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\scripts\phar\generator::testRun():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/phar/generator.php on line 356, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\writers\std\out::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/phar/generator.php on line 358, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\writers\std\err::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\scripts\phar\stub::testUpdate():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/phar/stub.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/writers/std.php on line 33:
Using $this when not in object context
=> mageekguy\atoum\tests\units\scripts\runner::testAddTestAllDirectory():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/runner.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/scripts/runner.php on line 149:
Using $this when not in object context
=> mageekguy\atoum\tests\units\scripts\runner::testAddReport():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/runner.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/scripts/runner.php on line 315:
Using $this when not in object context
=> mageekguy\atoum\tests\units\scripts\runner::testAddDefaultReport():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/runner.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/scripts/runner.php on line 306:
Using $this when not in object context
=> mageekguy\atoum\tests\units\scripts\runner::testAddDefaultArguments():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/runner.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/scripts/runner.php on line 130:
Using $this when not in object context
=> mageekguy\atoum\tests\units\scripts\runner::testUseConfigFile():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/runner.php on line 336, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\locale::__construct() cannot be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/runner.php on line 341, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 89:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\locale::_() should not be called statically
=> mageekguy\atoum\tests\units\scripts\runner::testSetNamespaces():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/runner.php on line 402, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\scripts\runner::__construct() cannot be called statically
==> Error 2048 in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/runner.php on line 404, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 389:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\scripts\runner::testNamespaces() should not be called statically
==> Error E_NOTICE in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/runner.php on line 404, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/scripts/runner.php on line 282:
Undefined variable: this
=> mageekguy\atoum\tests\units\scripts\tagger::testRun():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/tagger.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/scripts/tagger.php on line 26:
Using $this when not in object context
=> mageekguy\atoum\tests\units\scripts\treemap::testAddCategorizer():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/treemap.php on line 147, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\scripts\treemap\categorizer::__construct() cannot be called statically
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/treemap.php on line 149, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\scripts\treemap\categorizer::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\scripts\treemap::testUseConfigFile():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/scripts/treemap.php on line 158, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\includer::__construct() cannot be called statically
=> mageekguy\atoum\tests\units\template\iterator::test__call():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/template/iterator.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/template/tag.php on line 55:
Using $this when not in object context
=> mageekguy\atoum\tests\units\test::testGetTestedClassName():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/test.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/test.php on line 606:
Using $this when not in object context
=> mageekguy\atoum\tests\units\test::testRun():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/test.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/test.php on line 959:
Using $this when not in object context
=> mageekguy\atoum\tests\units\test\engines\concurrent::testRun():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/test/engines/concurrent.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/test.php on line 697:
Using $this when not in object context
=> mageekguy\atoum\tests\units\test\engines\concurrent::testGetScore():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/test/engines/concurrent.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/test.php on line 697:
Using $this when not in object context
=> mageekguy\atoum\tests\units\test\engines\inline::testRun():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/test/engines/inline.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/test.php on line 697:
Using $this when not in object context
=> mageekguy\atoum\tests\units\test\engines\inline::testGetScore():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/test/engines/inline.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/test.php on line 148:
Using $this when not in object context
=> mageekguy\atoum\tests\units\writer::test__construct():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/writer.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/writer.php on line 23:
Using $this when not in object context
=> mageekguy\atoum\tests\units\writer::testSetAdapter():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/writer.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/writer.php on line 16:
Using $this when not in object context
=> mageekguy\atoum\tests\units\writers\mail::testWriteAsynchronousReport():
==> Error FATAL ERROR in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/writers/mail.php on unknown line, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/writers/mail.php on line 64:
Using $this when not in object context
=> mageekguy\atoum\tests\units\writers\mail::testWrite():
==> Error E_WARNING in /Users/jubianchi/repositories/atoum/atoum/tests/units/classes/writers/mail.php on line 64, generated by file /Users/jubianchi/repositories/atoum/atoum/classes/mock/generator.php(195) : eval()'d code on line 50:
call_user_func_array() expects parameter 1 to be a valid callback, non-static method mageekguy\atoum\mailer::__construct() cannot be called statically
git clone gh:AOP-PHP/AOP
cd AOP
phpize
./configure
make
make test
=====================================================================
FAILED TEST SUMMARY
---------------------------------------------------------------------
Fluent interface fun with aop [tests/articles/001.phpt]
Try using finfo_open [tests/bugs/005.phpt]
Try using new finfo() [tests/bugs/006.phpt]
Try using finfo_open (may cause segmentation fault) [tests/bugs/007.phpt]
=====================================================================
=====================================================================
TEST RESULT SUMMARY
---------------------------------------------------------------------
Exts skipped : 0
Exts tested : 20
---------------------------------------------------------------------
Number of tests : 115 115
Tests skipped : 0 ( 0.0%) --------
Tests warned : 0 ( 0.0%) ( 0.0%)
Tests failed : 4 ( 3.5%) ( 3.5%)
Expected fail : 0 ( 0.0%) ( 0.0%)
Tests passed : 111 ( 96.5%) ( 96.5%)
---------------------------------------------------------------------
Time taken : 2 seconds
=====================================================================
=====================================================================
FAILED TEST SUMMARY
---------------------------------------------------------------------
Fluent interface fun with aop [tests/articles/001.phpt]
Try using finfo_open [tests/bugs/005.phpt]
Try using new finfo() [tests/bugs/006.phpt]
Try using finfo_open (may cause segmentation fault) [tests/bugs/007.phpt]
=====================================================================
================================================================================
/Users/jubianchi/repositories/AOP/tests/articles/001.phpt
================================================================================
================================================================================
001+
001- okStopped being fluent...ok
================================================================================
================================================================================
/Users/jubianchi/repositories/AOP/tests/bugs/005.phpt
================================================================================
Fatal error: Call to undefined function finfo_open() in /Users/jubianchi/repositories/AOP/tests/bugs/005.php on line 2
================================================================================
001+ Fatal error: Call to undefined function finfo_open() in /Users/jubianchi/repositories/AOP/tests/bugs/005.php on line 2
001- text/x-php
================================================================================
================================================================================
/Users/jubianchi/repositories/AOP/tests/bugs/006.phpt
================================================================================
Fatal error: Class 'finfo' not found in /Users/jubianchi/repositories/AOP/tests/bugs/006.php on line 4
================================================================================
001+ Fatal error: Class 'finfo' not found in /Users/jubianchi/repositories/AOP/tests/bugs/006.php on line 4
001- text/x-%s
================================================================================
================================================================================
/Users/jubianchi/repositories/AOP/tests/bugs/007.phpt
================================================================================
Fatal error: Call to undefined function finfo_open() in /Users/jubianchi/repositories/AOP/tests/bugs/007.php on line 4
================================================================================
001+ Fatal error: Call to undefined function finfo_open() in /Users/jubianchi/repositories/AOP/tests/bugs/007.php on line 4
001- PASS
================================================================================
================================================================================
BUILD ENVIRONMENT
================================================================================
OS:
Darwin - Darwin mbp.local 12.3.0 Darwin Kernel Version 12.3.0: Sun Jan 6 22:37:10 PST 2013; root:xnu-2050.22.13~1/RELEASE_X86_64 x86_64
Autoconf:
autoconf (GNU Autoconf) 2.61
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software. You may redistribute copies of it under the terms of
the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.
There is NO WARRANTY, to the extent permitted by law.
Written by David J. MacKenzie and Akim Demaille.
Bundled Libtool:
ltmain.sh (GNU libtool) 1.5.26 (1.1220.2.492 2008/01/30 06:40:56)
Copyright (C) 2008 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
System Libtool:
libtool (GNU libtool) 2.2.10
Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
Copyright (C) 2010 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Compiler:
Apple LLVM version 4.2 (clang-425.0.27) (based on LLVM 3.2svn)
Target: x86_64-apple-darwin12.3.0
Thread model: posix
Bison:
bison (GNU Bison) 2.3
Written by Robert Corbett and Richard Stallman.
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Libraries:
================================================================================
PHPINFO
================================================================================
phpinfo()
PHP Version => 5.4.11
System => Darwin mbp.local 12.3.0 Darwin Kernel Version 12.3.0: Sun Jan 6 22:37:10 PST 2013; root:xnu-2050.22.13~1/RELEASE_X86_64 x86_64
Build Date => Apr 1 2013 22:56:14
Configure Command => './configure' '--prefix=/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11' '--with-config-file-path=/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/etc' '--with-config-file-scan-dir=/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/var/db' '--with-pear=/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/lib/php' '--enable-libxml' '--disable-all' '--enable-ctype' '--enable-dom' '--enable-json' '--enable-phar' '--enable-simplexml' '--enable-xml' '--enable-tokenizer' '--with-xsl' '--enable-hash' '--enable-posix' '--enable-session'
Server API => Command Line Interface
Virtual Directory Support => disabled
Configuration File (php.ini) Path => /Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/etc
Loaded Configuration File => /Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/etc/php.ini
Scan this dir for additional .ini files => /Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/var/db
Additional .ini files parsed => /Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/var/db/date.timezone.ini,
/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/var/db/xdebug.ini
PHP API => 20100412
PHP Extension => 20100525
Zend Extension => 220100525
Zend Extension Build => API220100525,NTS
PHP Extension Build => API20100525,NTS
Debug Build => no
Thread Safety => disabled
Zend Signal Handling => disabled
Zend Memory Manager => enabled
Zend Multibyte Support => disabled
IPv6 Support => enabled
DTrace Support => disabled
Registered PHP Streams => php, file, glob, data, http, ftp, phar
Registered Stream Socket Transports => tcp, udp, unix, udg
Registered Stream Filters => string.rot13, string.toupper, string.tolower, string.strip_tags, convert.*, consumed, dechunk
This program makes use of the Zend Scripting Language Engine:
Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies
with Xdebug v2.2.2, Copyright (c) 2002-2013, by Derick Rethans
_______________________________________________________________________
Configuration
Core
PHP Version => 5.4.11
Directive => Local Value => Master Value
allow_url_fopen => On => On
allow_url_include => Off => Off
always_populate_raw_post_data => Off => Off
arg_separator.input => & => &
arg_separator.output => & => &
asp_tags => Off => Off
auto_append_file => no value => no value
auto_globals_jit => On => On
auto_prepend_file => no value => no value
browscap => no value => no value
default_charset => no value => no value
default_mimetype => text/html => text/html
disable_classes => no value => no value
disable_functions => no value => no value
display_errors => STDERR => STDERR
display_startup_errors => On => On
doc_root => no value => no value
docref_ext => no value => no value
docref_root => no value => no value
enable_dl => Off => Off
enable_post_data_reading => On => On
error_append_string => no value => no value
error_log => no value => no value
error_prepend_string => no value => no value
error_reporting => 32767 => 32767
exit_on_timeout => Off => Off
expose_php => On => On
extension_dir => /Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/lib/php/extensions/no-debug-non-zts-20100525 => /Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/lib/php/extensions/no-debug-non-zts-20100525
file_uploads => On => On
highlight.comment => <font style="color: #FF8000">#FF8000</font> => <font style="color: #FF8000">#FF8000</font>
highlight.default => <font style="color: #0000BB">#0000BB</font> => <font style="color: #0000BB">#0000BB</font>
highlight.html => <font style="color: #000000">#000000</font> => <font style="color: #000000">#000000</font>
highlight.keyword => <font style="color: #007700">#007700</font> => <font style="color: #007700">#007700</font>
highlight.string => <font style="color: #DD0000">#DD0000</font> => <font style="color: #DD0000">#DD0000</font>
html_errors => Off => Off
ignore_repeated_errors => Off => Off
ignore_repeated_source => Off => Off
ignore_user_abort => Off => Off
implicit_flush => On => On
include_path => .:/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/lib/php => .:/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/lib/php
log_errors => On => On
log_errors_max_len => 1024 => 1024
mail.add_x_header => On => On
mail.force_extra_parameters => no value => no value
mail.log => no value => no value
max_execution_time => 0 => 0
max_file_uploads => 20 => 20
max_input_nesting_level => 64 => 64
max_input_time => -1 => -1
max_input_vars => 1000 => 1000
memory_limit => 128M => 128M
open_basedir => no value => no value
output_buffering => 0 => 0
output_handler => no value => no value
post_max_size => 8M => 8M
precision => 14 => 14
realpath_cache_size => 16K => 16K
realpath_cache_ttl => 120 => 120
register_argc_argv => On => On
report_memleaks => On => On
report_zend_debug => Off => Off
request_order => GP => GP
sendmail_from => no value => no value
sendmail_path => /usr/sbin/sendmail -t -i => /usr/sbin/sendmail -t -i
serialize_precision => 17 => 17
short_open_tag => Off => Off
SMTP => localhost => localhost
smtp_port => 25 => 25
sql.safe_mode => Off => Off
track_errors => On => On
unserialize_callback_func => no value => no value
upload_max_filesize => 2M => 2M
upload_tmp_dir => no value => no value
user_dir => no value => no value
user_ini.cache_ttl => 300 => 300
user_ini.filename => .user.ini => .user.ini
variables_order => GPCS => GPCS
xmlrpc_error_number => 0 => 0
xmlrpc_errors => Off => Off
zend.detect_unicode => On => On
zend.enable_gc => On => On
zend.multibyte => Off => Off
zend.script_encoding => no value => no value
ctype
ctype functions => enabled
date
date/time support => enabled
"Olson" Timezone Database Version => 2012.10
Timezone Database => internal
Default timezone => Europe/Paris
Directive => Local Value => Master Value
date.default_latitude => 31.7667 => 31.7667
date.default_longitude => 35.2333 => 35.2333
date.sunrise_zenith => 90.583333 => 90.583333
date.sunset_zenith => 90.583333 => 90.583333
date.timezone => Europe/Paris => Europe/Paris
dom
DOM/XML => enabled
DOM/XML API Version => 20031129
libxml Version => 2.7.8
HTML Support => enabled
XPath Support => enabled
XPointer Support => enabled
Schema Support => enabled
RelaxNG Support => enabled
ereg
Regex Library => Bundled library enabled
hash
hash support => enabled
Hashing Engines => md2 md4 md5 sha1 sha224 sha256 sha384 sha512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru snefru256 gost adler32 crc32 crc32b fnv132 fnv164 joaat haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5
json
json support => enabled
json version => 1.2.1
libxml
libXML support => active
libXML Compiled Version => 2.7.8
libXML Loaded Version => 20708
libXML streams => enabled
pcre
PCRE (Perl Compatible Regular Expressions) Support => enabled
PCRE Library Version => 8.31 2012-07-06
Directive => Local Value => Master Value
pcre.backtrack_limit => 1000000 => 1000000
pcre.recursion_limit => 100000 => 100000
Phar
Phar: PHP Archive support => enabled
Phar EXT version => 2.0.1
Phar API version => 1.1.1
SVN revision => $Id: cc7eac717db60fe3deade794d4ae082fe97279ed $
Phar-based phar archives => enabled
Tar-based phar archives => enabled
ZIP-based phar archives => enabled
gzip compression => disabled (install ext/zlib)
bzip2 compression => disabled (install pecl/bz2)
OpenSSL support => disabled (install ext/openssl)
Phar based on pear/PHP_Archive, original concept by Davey Shafik.
Phar fully realized by Gregory Beaver and Marcus Boerger.
Portions of tar implementation Copyright (c) 2003-2009 Tim Kientzle.
Directive => Local Value => Master Value
phar.cache_list => no value => no value
phar.readonly => On => On
phar.require_hash => On => On
posix
Revision => $Id: 32db6705f5b617967a546be3114e178a4138c1ca $
Reflection
Reflection => enabled
Version => $Id: 25ecbad68e5a4573ffee43ea24a0591ea179492a $
session
Session Support => enabled
Registered save handlers => files user
Registered serializer handlers => php php_binary
Directive => Local Value => Master Value
session.auto_start => Off => Off
session.cache_expire => 180 => 180
session.cache_limiter => nocache => nocache
session.cookie_domain => no value => no value
session.cookie_httponly => Off => Off
session.cookie_lifetime => 0 => 0
session.cookie_path => / => /
session.cookie_secure => Off => Off
session.entropy_file => /dev/urandom => /dev/urandom
session.entropy_length => 32 => 32
session.gc_divisor => 1000 => 1000
session.gc_maxlifetime => 1440 => 1440
session.gc_probability => 1 => 1
session.hash_bits_per_character => 5 => 5
session.hash_function => 0 => 0
session.name => PHPSESSID => PHPSESSID
session.referer_check => no value => no value
session.save_handler => files => files
session.save_path => no value => no value
session.serialize_handler => php => php
session.upload_progress.cleanup => On => On
session.upload_progress.enabled => On => On
session.upload_progress.freq => 1% => 1%
session.upload_progress.min_freq => 1 => 1
session.upload_progress.name => PHP_SESSION_UPLOAD_PROGRESS => PHP_SESSION_UPLOAD_PROGRESS
session.upload_progress.prefix => upload_progress_ => upload_progress_
session.use_cookies => On => On
session.use_only_cookies => On => On
session.use_trans_sid => 0 => 0
SimpleXML
Simplexml support => enabled
Revision => $Id: 692516840b2d7d6e7aedb0bedded1f53b764a99f $
Schema support => enabled
SPL
SPL support => enabled
Interfaces => Countable, OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject
Classes => AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, CallbackFilterIterator, DirectoryIterator, DomainException, EmptyIterator, FilesystemIterator, FilterIterator, GlobIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, MultipleIterator, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveCallbackFilterIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RecursiveTreeIterator, RegexIterator, RuntimeException, SplDoublyLinkedList, SplFileInfo, SplFileObject, SplFixedArray, SplHeap, SplMinHeap, SplMaxHeap, SplObjectStorage, SplPriorityQueue, SplQueue, SplStack, SplTempFileObject, UnderflowException, UnexpectedValueException
standard
Dynamic Library Support => enabled
Path to sendmail => /usr/sbin/sendmail -t -i
Directive => Local Value => Master Value
assert.active => 1 => 1
assert.bail => 0 => 0
assert.callback => no value => no value
assert.quiet_eval => 0 => 0
assert.warning => 1 => 1
auto_detect_line_endings => 0 => 0
default_socket_timeout => 60 => 60
from => no value => no value
url_rewriter.tags => a=href,area=href,frame=src,input=src,form=fakeentry => a=href,area=href,frame=src,input=src,form=fakeentry
user_agent => no value => no value
tokenizer
Tokenizer Support => enabled
xdebug
xdebug support => enabled
Version => 2.2.2
IDE Key => jubianchi
Supported protocols => Revision
DBGp - Common DeBuGger Protocol => $Revision: 1.145 $
Directive => Local Value => Master Value
xdebug.auto_trace => Off => Off
xdebug.cli_color => 0 => 0
xdebug.collect_assignments => Off => Off
xdebug.collect_includes => On => On
xdebug.collect_params => 0 => 0
xdebug.collect_return => Off => Off
xdebug.collect_vars => Off => Off
xdebug.coverage_enable => On => On
xdebug.default_enable => On => On
xdebug.dump.COOKIE => no value => no value
xdebug.dump.ENV => no value => no value
xdebug.dump.FILES => no value => no value
xdebug.dump.GET => no value => no value
xdebug.dump.POST => no value => no value
xdebug.dump.REQUEST => no value => no value
xdebug.dump.SERVER => no value => no value
xdebug.dump.SESSION => no value => no value
xdebug.dump_globals => On => On
xdebug.dump_once => On => On
xdebug.dump_undefined => Off => Off
xdebug.extended_info => On => On
xdebug.file_link_format => no value => no value
xdebug.idekey => no value => no value
xdebug.max_nesting_level => 100 => 100
xdebug.overload_var_dump => On => On
xdebug.profiler_aggregate => Off => Off
xdebug.profiler_append => Off => Off
xdebug.profiler_enable => Off => Off
xdebug.profiler_enable_trigger => Off => Off
xdebug.profiler_output_dir => /var/tmp/ => /var/tmp/
xdebug.profiler_output_name => cachegrind.out.%p => cachegrind.out.%p
xdebug.remote_autostart => Off => Off
xdebug.remote_connect_back => Off => Off
xdebug.remote_cookie_expire_time => 3600 => 3600
xdebug.remote_enable => Off => Off
xdebug.remote_handler => dbgp => dbgp
xdebug.remote_host => localhost => localhost
xdebug.remote_log => no value => no value
xdebug.remote_mode => req => req
xdebug.remote_port => 9000 => 9000
xdebug.scream => Off => Off
xdebug.show_exception_trace => Off => Off
xdebug.show_local_vars => Off => Off
xdebug.show_mem_delta => Off => Off
xdebug.trace_enable_trigger => Off => Off
xdebug.trace_format => 0 => 0
xdebug.trace_options => 0 => 0
xdebug.trace_output_dir => /var/tmp/ => /var/tmp/
xdebug.trace_output_name => trace.%c => trace.%c
xdebug.var_display_max_children => 128 => 128
xdebug.var_display_max_data => 512 => 512
xdebug.var_display_max_depth => 3 => 3
xml
XML Support => active
XML Namespace Support => active
libxml2 Version => 2.7.8
xsl
XSL => enabled
libxslt Version => 1.1.26
libxslt compiled against libxml Version => 2.7.8
EXSLT => enabled
libexslt Version => 1.1.26
Additional Modules
Module Name
Environment
Variable => Value
GREP_COLOR => 1;32
LESS_TERMCAP_mb => 
TERM_PROGRAM => iTerm.app
TEST_PHP_SRCDIR => /Users/jubianchi/repositories/AOP
_resty_nohistory => /dev/null
LESS_TERMCAP_md => 
LESS_TERMCAP_me => 
DISABLE_RPROMPT => true
SHELL => /bin/zsh
TERM => screen-256color
MAKEFLAGS =>
SSH_CLIENT => deleted
TMPDIR => /var/folders/md/fz5stgd57_7b9w7vgqtnf7b80000gn/T/
Apple_PubSub_Socket_Render => /tmp/launch-n4jGaa/Render
P4HOST => localhost
LESS_TERMCAP_ue => 
SSH_TTY => deleted
_PHPSWITCH_CURRENT_VERSION => php-5.4.11
USER => jubianchi
COMMAND_MODE => unix2003
SSH_AUTH_SOCK => deleted
Apple_Ubiquity_Message => /tmp/launch-GIl7LF/Apple_Ubiquity_Message
__CF_USER_TEXT_ENCODING => 0x1F5:0:91
MAKELEVEL => 1
PAGER => less
MFLAGS =>
TMUX => /private/var/folders/md/fz5stgd57_7b9w7vgqtnf7b80000gn/T/tmux-501/default,436,1
_resty_host => http://google.fr*
LSCOLORS => Gxfxcxdxbxegedabagacad
LESS_TERMCAP_us => 
PATH => /Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/bin:/usr/local/bin:/usr/local/share/npm/bin:/usr/local/sbin:/Users/jubianchi/pear/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/X11/bin
_ => /Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/bin/php
_resty_path =>
PWD => /Users/jubianchi/repositories/AOP
EDITOR => vim
LANG => fr_FR.UTF-8
TEST_PHP_EXECUTABLE => /Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/bin/php
ITERM_PROFILE => Default
TMUX_PANE => %1
_PHPSWITCH_ORIG_PATH => /usr/local/bin:/usr/local/share/npm/bin:/usr/local/sbin:/Users/jubianchi/pear/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/X11/bin
MANPAGER => less -FRX
HOME => /Users/jubianchi
SHLVL => 3
COLORFGBG => 12;8
GREP_OPTIONS => --color=auto
ITERM_SESSION_ID => w0t0p0
LOGNAME => jubianchi
LESS => -R
SSH_CONNECTION => deleted
LC_CTYPE => fr_FR.UTF-8
P4USER => jubianchi
LESS_TERMCAP_so => 
DISPLAY => /tmp/launch-GHyLT9/org.macosforge.xquartz:0
CC => cc
P4PORT => 1818
LESS_TERMCAP_se => 
PHP Variables
Variable => Value
_SERVER["GREP_COLOR"] => 1;32
_SERVER["LESS_TERMCAP_mb"] => 
_SERVER["TERM_PROGRAM"] => iTerm.app
_SERVER["TEST_PHP_SRCDIR"] => /Users/jubianchi/repositories/AOP
_SERVER["_resty_nohistory"] => /dev/null
_SERVER["LESS_TERMCAP_md"] => 
_SERVER["LESS_TERMCAP_me"] => 
_SERVER["DISABLE_RPROMPT"] => true
_SERVER["SHELL"] => /bin/zsh
_SERVER["TERM"] => screen-256color
_SERVER["MAKEFLAGS"] =>
_SERVER["SSH_CLIENT"] => deleted
_SERVER["TMPDIR"] => /var/folders/md/fz5stgd57_7b9w7vgqtnf7b80000gn/T/
_SERVER["Apple_PubSub_Socket_Render"] => /tmp/launch-n4jGaa/Render
_SERVER["P4HOST"] => localhost
_SERVER["LESS_TERMCAP_ue"] => 
_SERVER["SSH_TTY"] => deleted
_SERVER["_PHPSWITCH_CURRENT_VERSION"] => php-5.4.11
_SERVER["USER"] => jubianchi
_SERVER["COMMAND_MODE"] => unix2003
_SERVER["SSH_AUTH_SOCK"] => deleted
_SERVER["Apple_Ubiquity_Message"] => /tmp/launch-GIl7LF/Apple_Ubiquity_Message
_SERVER["__CF_USER_TEXT_ENCODING"] => 0x1F5:0:91
_SERVER["MAKELEVEL"] => 1
_SERVER["PAGER"] => less
_SERVER["MFLAGS"] =>
_SERVER["TMUX"] => /private/var/folders/md/fz5stgd57_7b9w7vgqtnf7b80000gn/T/tmux-501/default,436,1
_SERVER["_resty_host"] => http://google.fr*
_SERVER["LSCOLORS"] => Gxfxcxdxbxegedabagacad
_SERVER["LESS_TERMCAP_us"] => 
_SERVER["PATH"] => /Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/bin:/usr/local/bin:/usr/local/share/npm/bin:/usr/local/sbin:/Users/jubianchi/pear/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/X11/bin
_SERVER["_"] => /Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/bin/php
_SERVER["_resty_path"] =>
_SERVER["PWD"] => /Users/jubianchi/repositories/AOP
_SERVER["EDITOR"] => vim
_SERVER["LANG"] => fr_FR.UTF-8
_SERVER["TEST_PHP_EXECUTABLE"] => /Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/bin/php
_SERVER["ITERM_PROFILE"] => Default
_SERVER["TMUX_PANE"] => %1
_SERVER["_PHPSWITCH_ORIG_PATH"] => /usr/local/bin:/usr/local/share/npm/bin:/usr/local/sbin:/Users/jubianchi/pear/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/opt/X11/bin
_SERVER["MANPAGER"] => less -FRX
_SERVER["HOME"] => /Users/jubianchi
_SERVER["SHLVL"] => 3
_SERVER["COLORFGBG"] => 12;8
_SERVER["GREP_OPTIONS"] => --color=auto
_SERVER["ITERM_SESSION_ID"] => w0t0p0
_SERVER["LOGNAME"] => jubianchi
_SERVER["LESS"] => -R
_SERVER["SSH_CONNECTION"] => deleted
_SERVER["LC_CTYPE"] => fr_FR.UTF-8
_SERVER["P4USER"] => jubianchi
_SERVER["LESS_TERMCAP_so"] => 
_SERVER["DISPLAY"] => /tmp/launch-GHyLT9/org.macosforge.xquartz:0
_SERVER["CC"] => cc
_SERVER["P4PORT"] => 1818
_SERVER["LESS_TERMCAP_se"] => 
_SERVER["PHP_SELF"] =>
_SERVER["SCRIPT_NAME"] =>
_SERVER["SCRIPT_FILENAME"] =>
_SERVER["PATH_TRANSLATED"] =>
_SERVER["DOCUMENT_ROOT"] =>
_SERVER["REQUEST_TIME_FLOAT"] => 1369260800.1651
_SERVER["REQUEST_TIME"] => 1369260800
_SERVER["argv"] => Array
(
)
_SERVER["argc"] => 0
PHP License
This program is free software; you can redistribute it and/or modify
it under the terms of the PHP License as published by the PHP Group
and included in the distribution in the file: LICENSE
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
If you did not receive a copy of the PHP license, or have any
questions about PHP licensing, please contact license@php.net.
--prefix [/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11]
--includes [-I/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/include/php -I/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/include/php/main -I/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/include/php/TSRM -I/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/include/php/Zend -I/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/include/php/ext -I/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/include/php/ext/date/lib]
--ldflags []
--libs [ -lexslt -lresolv -lm -lxml2 -lxml2 -lxml2 -lxml2 -lxml2 -lxslt ]
--extension-dir [/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/lib/php/extensions/no-debug-non-zts-20100525]
--include-dir [/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/include/php]
--man-dir [/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/php/man]
--php-binary [/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/bin/php]
--php-sapis [ cli cgi]
--configure-options [--prefix=/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11 --with-config-file-path=/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/etc --with-config-file-scan-dir=/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/var/db --with-pear=/Users/jubianchi/repositories/jubianchi/phpswitch/.phpswitch/installed/php-5.4.11/lib/php --enable-libxml --disable-all --enable-ctype --enable-dom --enable-json --enable-phar --enable-simplexml --enable-xml --enable-tokenizer --with-xsl --enable-hash --enable-posix --enable-session]
--version [5.4.11]
--vernum [50411]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment