Skip to content

Commit

Permalink
pint
Browse files Browse the repository at this point in the history
  • Loading branch information
rudashi committed Oct 12, 2024
1 parent 5f2e1f1 commit e967b19
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/JavaScript/Set.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public function delete(mixed $value): bool
* Returns a new Set containing elements in given Set.
* @link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/difference
*
* @param \Rudashi\JavaScript\Set<TValue> $other
* @param \Rudashi\JavaScript\Set<TValue> $other
*
* @return \Rudashi\JavaScript\Set<TValue>
*/
Expand Down Expand Up @@ -164,7 +164,7 @@ public function has(mixed $value): bool
* Returns a new Set containing elements from both Set.
* @link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/intersection
*
* @param \Rudashi\JavaScript\Set<TValue> $other
* @param \Rudashi\JavaScript\Set<TValue> $other
*
* @return \Rudashi\JavaScript\Set<TValue>
*/
Expand Down Expand Up @@ -194,7 +194,7 @@ public function isDisjointFrom(Set $other): bool
* Determine if all elements exists in the given Set.
* @link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/isSubsetOf
*
* @param \Rudashi\JavaScript\Set<TValue> $other
* @param \Rudashi\JavaScript\Set<TValue> $other
*/
public function isSubsetOf(Set $other): bool
{
Expand All @@ -211,7 +211,7 @@ public function isSubsetOf(Set $other): bool
* Determine if all elements of given Set exists in the Set.
* @link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/isSupersetOf
*
* @param \Rudashi\JavaScript\Set<TValue> $other
* @param \Rudashi\JavaScript\Set<TValue> $other
*/
public function isSupersetOf(Set $other): bool
{
Expand Down Expand Up @@ -258,7 +258,7 @@ public function toArray(): array
* Merge the Set with the given Set.
* @link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/union
*
* @param \Rudashi\JavaScript\Set<TValue> $other
* @param \Rudashi\JavaScript\Set<TValue> $other
*
* @return \Rudashi\JavaScript\Set<TValue>
*/
Expand Down

0 comments on commit e967b19

Please sign in to comment.