Skip to content

Commit

Permalink
added getter for file property in LFS
Browse files Browse the repository at this point in the history
  • Loading branch information
mathielen committed Aug 5, 2015
1 parent 66d8101 commit eb22350
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/Mathielen/ImportEngine/Storage/LocalFileStorage.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,17 @@ public function __construct(\SplFileInfo $file, Format $format)
$this->format = $format;
}

/**
* @return \SplFileInfo
*/
public function getFile()
{
return $this->file;
}

/**
* @return Format
*/
public function getFormat()
{
return $this->format;
Expand Down

0 comments on commit eb22350

Please sign in to comment.