filename = $filename; $this->permission = $permission; } /** * Returns the filename associated with the object. * * This method provides access to the `filename` property of the object. * * @return string The filename. */ public function filename() { return $this->filename; } /** * Returns the permission associated with the object. * * This method provides access to the `permission` property of the object. * * @return string The permission. */ public function permission() { return $this->permission; } }