source_filename = $source_filename; $this->destination_filename = $destination_filename; } /** * Retrieves the source filename associated with the object. * * @return string The source filename assigned during object initialization. */ public function source_filename() { return $this->source_filename; } /** * Retrieves the destination filename associated with the object. * * @return string The destination filename assigned during object initialization. */ public function destination_filename() { return $this->destination_filename; } }