Skip to content

Commit

Permalink
Usage Memory
Browse files Browse the repository at this point in the history
  • Loading branch information
Raul Mauricio Uñate Castro committed Jul 1, 2024
1 parent a241d74 commit e0757ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default defineConfig({
logo: '/img/logo.png',
nav: [
{
text: 'Docs ^2.0',
text: 'Docs ^2.1',
link: '/',
}
],
Expand Down
4 changes: 2 additions & 2 deletions src/Traits/Init.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ public function maxExecutionTime(int $seconds = 60)
* This method sets the `memory_limit` directive in PHP to the specified
* value, allowing scripts to use more memory if necessary.
*
* @param string $limit Memory limit. Default is '256M'.
* @param string $limit Memory limit. Default is '512M'.
*
* @return $this
*/
public function memoryLimit(string $limit = '256M')
public function memoryLimit(string $limit = '512M')
{
// Store the memory limit in the instance variable
$this->memoryLimit = $limit;
Expand Down

0 comments on commit e0757ec

Please sign in to comment.