Added Laravel project
This commit is contained in:
14
Laravel/vendor/phar-io/manifest/src/exceptions/Exception.php
vendored
Normal file
14
Laravel/vendor/phar-io/manifest/src/exceptions/Exception.php
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
/*
|
||||
* This file is part of PharIo\Manifest.
|
||||
*
|
||||
* (c) Arne Blankerts <arne@blankerts.de>, Sebastian Heuer <sebastian@phpeople.de>, Sebastian Bergmann <sebastian@phpunit.de>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace PharIo\Manifest;
|
||||
|
||||
interface Exception {
|
||||
}
|
16
Laravel/vendor/phar-io/manifest/src/exceptions/InvalidApplicationNameException.php
vendored
Normal file
16
Laravel/vendor/phar-io/manifest/src/exceptions/InvalidApplicationNameException.php
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
/*
|
||||
* This file is part of PharIo\Manifest.
|
||||
*
|
||||
* (c) Arne Blankerts <arne@blankerts.de>, Sebastian Heuer <sebastian@phpeople.de>, Sebastian Bergmann <sebastian@phpunit.de>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace PharIo\Manifest;
|
||||
|
||||
class InvalidApplicationNameException extends \InvalidArgumentException implements Exception {
|
||||
const NotAString = 1;
|
||||
const InvalidFormat = 2;
|
||||
}
|
14
Laravel/vendor/phar-io/manifest/src/exceptions/InvalidEmailException.php
vendored
Normal file
14
Laravel/vendor/phar-io/manifest/src/exceptions/InvalidEmailException.php
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
/*
|
||||
* This file is part of PharIo\Manifest.
|
||||
*
|
||||
* (c) Arne Blankerts <arne@blankerts.de>, Sebastian Heuer <sebastian@phpeople.de>, Sebastian Bergmann <sebastian@phpunit.de>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace PharIo\Manifest;
|
||||
|
||||
class InvalidEmailException extends \InvalidArgumentException implements Exception {
|
||||
}
|
14
Laravel/vendor/phar-io/manifest/src/exceptions/InvalidUrlException.php
vendored
Normal file
14
Laravel/vendor/phar-io/manifest/src/exceptions/InvalidUrlException.php
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
/*
|
||||
* This file is part of PharIo\Manifest.
|
||||
*
|
||||
* (c) Arne Blankerts <arne@blankerts.de>, Sebastian Heuer <sebastian@phpeople.de>, Sebastian Bergmann <sebastian@phpunit.de>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace PharIo\Manifest;
|
||||
|
||||
class InvalidUrlException extends \InvalidArgumentException implements Exception {
|
||||
}
|
6
Laravel/vendor/phar-io/manifest/src/exceptions/ManifestDocumentException.php
vendored
Normal file
6
Laravel/vendor/phar-io/manifest/src/exceptions/ManifestDocumentException.php
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace PharIo\Manifest;
|
||||
|
||||
class ManifestDocumentException extends \RuntimeException implements Exception {
|
||||
}
|
6
Laravel/vendor/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php
vendored
Normal file
6
Laravel/vendor/phar-io/manifest/src/exceptions/ManifestDocumentMapperException.php
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace PharIo\Manifest;
|
||||
|
||||
class ManifestDocumentMapperException extends \RuntimeException implements Exception {
|
||||
}
|
6
Laravel/vendor/phar-io/manifest/src/exceptions/ManifestElementException.php
vendored
Normal file
6
Laravel/vendor/phar-io/manifest/src/exceptions/ManifestElementException.php
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace PharIo\Manifest;
|
||||
|
||||
class ManifestElementException extends \RuntimeException implements Exception {
|
||||
}
|
6
Laravel/vendor/phar-io/manifest/src/exceptions/ManifestLoaderException.php
vendored
Normal file
6
Laravel/vendor/phar-io/manifest/src/exceptions/ManifestLoaderException.php
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace PharIo\Manifest;
|
||||
|
||||
class ManifestLoaderException extends \Exception implements Exception {
|
||||
}
|
Reference in New Issue
Block a user