Skip to content

Commit

Permalink
php-cs-fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
demiankatz committed Jan 19, 2024
1 parent 664d92c commit bbbbe35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion module/VuFind/src/VuFindTest/Feature/LiveDatabaseTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ protected function addDoctrineDependenciesToContainer($container): void
$options['cache_dir']
= LOCAL_CACHE_DIR . '/' . $options['cache_dir'] . '_testmode';
if (!is_dir($options['cache_dir'])) {
mkdir($options['cache_dir'], 0777, true);
mkdir($options['cache_dir'], 0o777, true);
}
$cacheAdapter = new \Laminas\Cache\Storage\Adapter\Filesystem($options);
$cacheAdapter->addPlugin(new \Laminas\Cache\Storage\Plugin\Serializer());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public function testUpdateColumn(): void
*
* @return array
*/
public function pageProvider(): array
public static function pageProvider(): array
{
return ['Test1' => [1],
'Test2' => [null],
Expand Down

0 comments on commit bbbbe35

Please sign in to comment.