Skip to content

Commit

Permalink
doc update + marked some classes as @api
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Donat committed May 12, 2014
1 parent 64cec4d commit 5748e91
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/VirtualFileSystem/Container.php
Expand Up @@ -23,6 +23,7 @@
*
* @author Michael Donat <michael.donat@me.com>
* @package php-vfs
* @api
*/
class Container
{
Expand Down
5 changes: 5 additions & 0 deletions src/VirtualFileSystem/Loader.php
Expand Up @@ -19,6 +19,11 @@

namespace VirtualFileSystem;

/**
* Class Loader to use with PEAR installation
*
* @package VirtualFileSystem
*/
class Loader
{
private $fileExtension = '.php';
Expand Down
1 change: 1 addition & 0 deletions src/VirtualFileSystem/Wrapper.php
Expand Up @@ -24,6 +24,7 @@
*
* @author Michael Donat <michael.donat@me.com>
* @package php-vfs
* @api
*/
class Wrapper
{
Expand Down
15 changes: 15 additions & 0 deletions src/VirtualFileSystem/Wrapper/PermissionHelper.php
@@ -1,9 +1,24 @@
<?php
/*
* This file is part of the php-vfs package.
*
* (c) Michael Donat <michael.donat@me.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace VirtualFileSystem\Wrapper;

use VirtualFileSystem\Structure\Node;

/**
* Class to encapsulate permission checks
*
* @author Michael Donat <michael.donat@me.com>
* @package php-vfs
* @api
*/
class PermissionHelper
{
const MODE_USER_READ = 0400;
Expand Down

0 comments on commit 5748e91

Please sign in to comment.