Skip to content

Instantly share code, notes, and snippets.

@platoosom
Created September 28, 2017 05:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save platoosom/72d78080ab76be6eb8075def995b79c1 to your computer and use it in GitHub Desktop.
Save platoosom/72d78080ab76be6eb8075def995b79c1 to your computer and use it in GitHub Desktop.
<?php
class File {
public __construct() {
$this->path = '';
$this->name = '';
}
public set FileName($name = '') {
$this->name = $name;
}
public getFileName() {
return $this->name;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment