Skip to content

Commit

Permalink
Formatted method argument spacing
Browse files Browse the repository at this point in the history
Signed-off-by: Tom Wright <tom@inflatablecookie.com>
  • Loading branch information
betterthanclay committed Nov 3, 2023
1 parent e989028 commit ef2d7bd
Show file tree
Hide file tree
Showing 6 changed files with 283 additions and 175 deletions.
19 changes: 15 additions & 4 deletions src/Consumer.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,19 @@

interface Consumer
{
public static function fromXml(mixed $xml): static;
public static function fromXmlFile(string $path): static;
public static function fromXmlString(string $xml): static;
public static function fromXmlElement(Element $element): static;
public static function fromXml(
mixed $xml
): static;

public static function fromXmlFile(
string $path
): static;

public static function fromXmlString(
string $xml
): static;

public static function fromXmlElement(
Element $element
): static;
}
Loading

0 comments on commit ef2d7bd

Please sign in to comment.