]> source.dussan.org Git - nextcloud-server.git/commit
implement php code checker to detect usage of not allowed private APIs - including...
authorThomas Müller <thomas.mueller@tmit.eu>
Wed, 28 Jan 2015 21:08:50 +0000 (22:08 +0100)
committerThomas Müller <thomas.mueller@tmit.eu>
Tue, 10 Feb 2015 10:51:24 +0000 (11:51 +0100)
commitd74662df7df72ad9ec238b78223acc0e7f65311f
treeffadb56b1bb0c0dfa11cb54a10a67186aff31306
parent5ae03fd650b6f3665d1c69ead674d4f5d6420513
implement php code checker to detect usage of not allowed private APIs - including console command to check local code to be used by developers
12 files changed:
3rdparty
core/command/app/checkcode.php [new file with mode: 0644]
core/register_command.php
lib/private/app/codechecker.php [new file with mode: 0644]
lib/private/app/codecheckervisitor.php [new file with mode: 0644]
lib/private/installer.php
tests/data/app/code-checker/test-const.php [new file with mode: 0644]
tests/data/app/code-checker/test-extends.php [new file with mode: 0644]
tests/data/app/code-checker/test-implements.php [new file with mode: 0644]
tests/data/app/code-checker/test-new.php [new file with mode: 0644]
tests/data/app/code-checker/test-static-call.php [new file with mode: 0644]
tests/lib/app/codechecker.php [new file with mode: 0644]