adding docs

This commit is contained in:
Shikiryu
2015-07-12 20:53:15 +02:00
parent 8426972504
commit 085f9ae152
5 changed files with 59 additions and 45 deletions

View File

@@ -0,0 +1,22 @@
<?php
namespace Shikiryu\Backup\Backup;
class Folder extends BackupAbstract
{
public function __construct(array $config = array())
{
parent::__construct($config);
}
/**
* @return bool
*/
public function isValid()
{
// TODO: Implement isValid() method.
}
}