Skip to content

Commit

Permalink
Fix minor documentation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Riimu committed Feb 1, 2015
1 parent 9a0d47b commit 4fe3c16
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# PSR-0 and PSR-4 Class Autoloader #

Classloader is a PHP library for autoloading classes. Class autoloading means
*Classloader* is a PHP library for autoloading classes. Class autoloading means
that classes are loaded only when they are actually needed instead of having to
include each class file on every execution. This reduces the page loading
overhead especially on larger websites, as only some of the class files need to
Expand Down
9 changes: 5 additions & 4 deletions apigen.neon
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
source:
- src

destination: api
charset:
- UTF-8
main: Riimu\Kit\ClassLoader
title: ClassLoader

main: Riimu\Kit\CSRF
title: CSRF
php: false
tree: true
5 changes: 4 additions & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/</directory>
<exclude>
<file>src/autoload.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>

0 comments on commit 4fe3c16

Please sign in to comment.