Skip to content

Commit

Permalink
Change default permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
msmakouz committed Nov 6, 2023
1 parent b4fbb11 commit e645d02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Queue/BoltdbCreateInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ final class BoltdbCreateInfo extends CreateInfo
{
public const PREFETCH_DEFAULT_VALUE = 10000;
public const FILE_DEFAULT_VALUE = 'rr.db';
public const PERMISSIONS_DEFAULT_VALUE = 0777;
public const PERMISSIONS_DEFAULT_VALUE = 0755;

/**
* @param non-empty-string $name
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/Queue/BoltdbCreateInfoTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function testToArray(): void
'priority' => $priority,
'prefetch' => $prefetch,
'file' => $file,
'permissions' => 0777,
'permissions' => 0755,
];

$this->assertEquals($expectedArray, $boltdbCreateInfo->toArray());
Expand Down

0 comments on commit e645d02

Please sign in to comment.