Skip to content

Commit

Permalink
Fix return type for creators
Browse files Browse the repository at this point in the history
  • Loading branch information
pscheit authored Aug 6, 2022
1 parent 5c748b6 commit 7fc7a88
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/php/Webforge/Common/System/File.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public function __construct($arg1, $arg2 = null)
/**
* Creates a temporary File in the system temp directory
*
* @return Webforge\Common\System\File
* @return self
*/
public static function createTemporary($extension = null)
{
Expand All @@ -87,7 +87,7 @@ public static function createTemporary($extension = null)
/**
* Creates the file from a relative URL in relation to $base
*
* @return Webforge\Common\System\File
* @return self
*/
public static function createFromURL($url, Dir $base = null)
{
Expand Down Expand Up @@ -139,7 +139,7 @@ protected function constructDefault($filename, Dir $directory=null)
}

/**
* @return Webforge\Common\System\File
* @return self
*/
public static function factory($arg1, $arg2 = null)
{
Expand Down

0 comments on commit 7fc7a88

Please sign in to comment.