Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ref: Wrap long method signature
Co-authored-by: Gina Peter Banyard <girgias@php.net>
  • Loading branch information
famoser and Girgias authored Apr 27, 2025
commit c6c8e50c8edc54837366bfc520479bd2c1f9fa8c
10 changes: 7 additions & 3 deletions ext/gmp/tests/gmp_cryptography_ecc.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,13 @@ class Point
*/
class Curve
{
public function __construct(private readonly \GMP $p, private readonly \GMP $a, private readonly \GMP $b, private readonly Point $G, private readonly \GMP $n)
{
}
public function __construct(
private readonly \GMP $p,
private readonly \GMP $a,
private readonly \GMP $b,
private readonly Point $G,
private readonly \GMP $n
) {}

public function getP(): \GMP
{
Expand Down
Loading