Skip to content

Commit 7fc7a88

Browse files
authored
Fix return type for creators
1 parent 5c748b6 commit 7fc7a88

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/php/Webforge/Common/System/File.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function __construct($arg1, $arg2 = null)
7171
/**
7272
* Creates a temporary File in the system temp directory
7373
*
74-
* @return Webforge\Common\System\File
74+
* @return self
7575
*/
7676
public static function createTemporary($extension = null)
7777
{
@@ -87,7 +87,7 @@ public static function createTemporary($extension = null)
8787
/**
8888
* Creates the file from a relative URL in relation to $base
8989
*
90-
* @return Webforge\Common\System\File
90+
* @return self
9191
*/
9292
public static function createFromURL($url, Dir $base = null)
9393
{
@@ -139,7 +139,7 @@ protected function constructDefault($filename, Dir $directory=null)
139139
}
140140

141141
/**
142-
* @return Webforge\Common\System\File
142+
* @return self
143143
*/
144144
public static function factory($arg1, $arg2 = null)
145145
{

0 commit comments

Comments
 (0)