-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from eclipxe13/master
Target 0.6.0
- Loading branch information
Showing
15 changed files
with
139 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace PhpCfdi\SatEstadoCfdi\Status; | ||
|
||
use Eclipxe\Enum\Enum; | ||
|
||
/** | ||
* @method static self cancellableByDirectCall() | ||
* @method static self cancellableByApproval() | ||
* @method static self notCancellable() | ||
* | ||
* @method bool isCancellableByDirectCall() | ||
* @method bool isCancellableByApproval() | ||
* @method bool isNotCancellable() | ||
*/ | ||
class CancellableStatus extends Enum | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace PhpCfdi\SatEstadoCfdi\Status; | ||
|
||
use Eclipxe\Enum\Enum; | ||
|
||
/** | ||
* @method static self undefined() | ||
* @method static self pending() | ||
* @method static self disapproved() | ||
* @method static self cancelledByApproval() | ||
* @method static self cancelledByExpiration() | ||
* @method static self cancelledByDirectCall() | ||
* | ||
* @method bool isUndefined() | ||
* @method bool isPending() | ||
* @method bool isDisapproved() | ||
* @method bool isCancelledByApproval() | ||
* @method bool isCancelledByExpiration() | ||
* @method bool isCancelledByDirectCall() | ||
*/ | ||
class CancellationStatus extends Enum | ||
{ | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.