Skip to content

Commit

Permalink
Update DocString
Browse files Browse the repository at this point in the history
  • Loading branch information
ufozone committed Mar 28, 2024
1 parent a4bc80b commit 8cba44a
Show file tree
Hide file tree
Showing 9 changed files with 125 additions and 120 deletions.
30 changes: 15 additions & 15 deletions vendor/lib/Sepa.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
// $Id: Sepa.php 8740 2024-03-28 16:03:37Z markus $
// $Id: Sepa.php 8745 2024-03-28 17:08:31Z markus $
declare(strict_types=1);

namespace MG;
Expand Down Expand Up @@ -65,14 +65,14 @@ abstract class Sepa
private $payments = [];

/**
* constructor
* Constructor
*
* @param ValidatorFactory $validatorFactory
*/
abstract public function __construct(ValidatorFactory $validatorFactory);

/**
* get type
* Get type
*
* @return int
*/
Expand All @@ -82,7 +82,7 @@ public function getType() : int
}

/**
* get pain mode
* Get pain mode
*
* @return string
*/
Expand All @@ -92,7 +92,7 @@ public function getPain() : string
}

/**
* set message identifier
* Set message identifier
*
* @param string $id
* @throws SepaException
Expand All @@ -114,7 +114,7 @@ public function setId(string $id) : Sepa
}

/**
* get message identifier
* Get message identifier
*
* @return string
*/
Expand All @@ -124,7 +124,7 @@ public function getId() : string
}

/**
* set initiator
* Set initiator
*
* @param string $initiator
* @throws SepaException
Expand All @@ -142,7 +142,7 @@ public function setInitiator(string $initiator) : Sepa
}

/**
* get initiator
* Get initiator
*
* @return string
*/
Expand All @@ -152,7 +152,7 @@ public function getInitiator() : string
}

/**
* add payment collection
* Add payment collection
*
* @param Payment $payment
* @return Sepa
Expand All @@ -165,7 +165,7 @@ public function addPayment(Payment $payment) : Sepa
}

/**
* get payment collections
* Get payment collections
*
* return array
*/
Expand All @@ -175,7 +175,7 @@ public function getPayments() : array
}

/**
* counts the transactions in all collections
* Counts the transactions in all collections
*
* @return int
*/
Expand All @@ -190,7 +190,7 @@ public function getNumberOfTransactions() : int
}

/**
* get control sum
* Get control sum
*
* @return int
*/
Expand All @@ -205,7 +205,7 @@ public function getControlSum() : int
}

/**
* get default scope
* Get default scope
*
* @return string
*/
Expand All @@ -215,7 +215,7 @@ public function getDefaultScope() : string
}

/**
* get default sequence
* Get default sequence
*
* @return string
*/
Expand All @@ -225,7 +225,7 @@ public function getDefaultSequence() : string
}

/**
* check necessary data
* Check necessary data
*
* @throws SepaException
* @return bool
Expand Down
4 changes: 2 additions & 2 deletions vendor/lib/Sepa/CreditTransfer.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
// $Id: CreditTransfer.php 8739 2024-03-28 12:41:21Z markus $
// $Id: CreditTransfer.php 8745 2024-03-28 17:08:31Z markus $
declare(strict_types=1);

namespace MG\Sepa;
Expand All @@ -16,7 +16,7 @@
class CreditTransfer extends Sepa
{
/**
* the constructor
* Constructor
*/
public function __construct(ValidatorFactory $validatorFactory)
{
Expand Down
4 changes: 2 additions & 2 deletions vendor/lib/Sepa/DirectDebit.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
// $Id: DirectDebit.php 8740 2024-03-28 16:03:37Z markus $
// $Id: DirectDebit.php 8745 2024-03-28 17:08:31Z markus $
declare(strict_types=1);

namespace MG\Sepa;
Expand All @@ -16,7 +16,7 @@
class DirectDebit extends Sepa
{
/**
* the constructor
* Constructor
*/
public function __construct(ValidatorFactory $validatorFactory)
{
Expand Down
Loading

0 comments on commit 8cba44a

Please sign in to comment.