Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
AmyStephen committed Sep 23, 2014
1 parent fa744a9 commit 095dfea
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 16 deletions.
4 changes: 2 additions & 2 deletions ConnectionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ interface ConnectionInterface
* @param array $options
*
* @return $this
* @since 1.0
* @since 1.0.0
*/
public function connect($options = array());

/**
* Close the Connection
*
* @return $this
* @since 1.0
* @since 1.0.0
*/
public function close();
}
26 changes: 13 additions & 13 deletions FilesystemInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ interface FilesystemInterface
* @param string $path
*
* @return bool
* @since 1.0
* @since 1.0.0
*/
public function exists($path);

Expand All @@ -34,7 +34,7 @@ public function exists($path);
* @param string $path
*
* @return mixed
* @since 1.0
* @since 1.0.0
*/
public function getMetadata($path);

Expand All @@ -44,7 +44,7 @@ public function getMetadata($path);
* @param string $path
*
* @return null|string
* @since 1.0
* @since 1.0.0
*/
public function read($path);

Expand All @@ -61,7 +61,7 @@ public function read($path);
* @param null $filename_mask
*
* @return mixed
* @since 1.0
* @since 1.0.0
*/
public function getList(
$path,
Expand All @@ -82,7 +82,7 @@ public function getList(
* @param bool $truncate (file, only)
*
* @return $this
* @since 1.0
* @since 1.0.0
*/
public function write($path, $data = '', $replace = true, $append = false, $truncate = false);

Expand All @@ -93,7 +93,7 @@ public function write($path, $data = '', $replace = true, $append = false, $trun
* @param bool $recursive
*
* @return $this
* @since 1.0
* @since 1.0.0
*/
public function delete($path, $recursive = false);

Expand All @@ -108,7 +108,7 @@ public function delete($path, $recursive = false);
* @param string $target_handler
*
* @return $this
* @since 1.0
* @since 1.0.0
*/
public function copy(
$path,
Expand All @@ -129,7 +129,7 @@ public function copy(
* @param string $target_handler
*
* @return $this
* @since 1.0
* @since 1.0.0
*/
public function move(
$path,
Expand All @@ -146,7 +146,7 @@ public function move(
* @param string $new_name
*
* @return $this
* @since 1.0
* @since 1.0.0
*/
public function rename($path, $new_name);

Expand All @@ -158,7 +158,7 @@ public function rename($path, $new_name);
* @param bool $recursive
*
* @return $this
* @since 1.0
* @since 1.0.0
*/
public function changeOwner($path, $user_name, $recursive = false);

Expand All @@ -170,7 +170,7 @@ public function changeOwner($path, $user_name, $recursive = false);
* @param bool $recursive
*
* @return $this
* @since 1.0
* @since 1.0.0
*/
public function changeGroup($path, $group_id, $recursive = false);

Expand All @@ -182,7 +182,7 @@ public function changeGroup($path, $group_id, $recursive = false);
* @param bool $recursive
*
* @return $this
* @since 1.0
* @since 1.0.0
*/
public function changePermission($path, $permission, $recursive = false);

Expand All @@ -195,7 +195,7 @@ public function changePermission($path, $permission, $recursive = false);
* @param bool $recursive
*
* @return $this
* @since 1.0
* @since 1.0.0
*/
public function touch($path, $modification_time = null, $access_time = null, $recursive = false);
}
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
}
],
"require": {
"php": ">=5.4",
"commonapi/exception": ">=0.1"
},
"autoload": {
Expand Down

0 comments on commit 095dfea

Please sign in to comment.