Skip to content

Commit

Permalink
Lint files
Browse files Browse the repository at this point in the history
  • Loading branch information
chiiya committed Aug 20, 2023
1 parent 6f7bf72 commit aec71ff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Apple/PassFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
use RecursiveIteratorIterator;
use RuntimeException;
use SplFileInfo;
use Throwable;
use ZipArchive;

class PassFactory
Expand Down Expand Up @@ -459,7 +460,7 @@ protected function openssl_pkcs12_read_wrapper(string $pkcs12, string $passphras
return ['cert' => $certMatches[0], 'pkey' => $keyMatches[0]];
}
}
} catch (\Throwable) {
} catch (Throwable) {
// no need to do anything
}

Expand Down

0 comments on commit aec71ff

Please sign in to comment.