Back to InstallerAdapter class

Method setManifest

public \Joomla\CMS\Installer\InstallerAdapter
setManifest
(mixed $manifest)
Set the manifest object.
Parameters
  • object $manifest The manifest object
Returns
  • \Joomla\CMS\Installer\InstallerAdapter Instance of this class to support chaining
Since
  • 3.4

Method setManifest - Source code

/**
 * Set the manifest object.
 *
 * @param   object  $manifest  The manifest object
 *
 * @return  InstallerAdapter  Instance of this class to support chaining
 *
 * @since   3.4
 */
public function setManifest($manifest)
{
    $this->manifest = $manifest;
    return $this;
}