It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
Loading history...
22
// ZIP can be created without temporary file by gzcompress - see PEAR File_Archive
23
$this->data .= $string;
24
if ($state & PHP_OUTPUT_HANDLER_END) {
25
$zip = new ZipArchive;
26
$zipFile = tempnam('', 'zip');
27
$zip->open($zipFile, ZipArchive::OVERWRITE); // php://output is not supported
It is generally recommended to explicitly declare the visibility for methods.
Adding explicit visibility (private, protected, or public) is generally
recommend to communicate to other developers how, and from where this method
is intended to be used.
Adding explicit visibility (
private
,protected
, orpublic
) is generally recommend to communicate to other developers how, and from where this method is intended to be used.