Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
FileInfo.php
Go to the documentation of this file.
1 <?php
7 
11 class FileInfo
12 {
18  private $initializationVector;
19 
25  private $path;
26 
31  public function __construct($path = '', $initializationVector = '')
32  {
33  $this->path = $path;
34  $this->initializationVector = $initializationVector;
35  }
36 
40  public function getPath()
41  {
42  return $this->path;
43  }
44 
48  public function getInitializationVector()
49  {
50  return $this->initializationVector;
51  }
52 }
__construct($path='', $initializationVector='')
Definition: FileInfo.php:31