diff options
Diffstat (limited to 'Model/Invariant.php')
-rw-r--r-- | Model/Invariant.php | 25 |
1 files changed, 5 insertions, 20 deletions
diff --git a/Model/Invariant.php b/Model/Invariant.php index c084f05..6f8eadc 100644 --- a/Model/Invariant.php +++ b/Model/Invariant.php @@ -8,7 +8,7 @@ * * New BSD License * - * Copyright © 2007-2015, Ivan Enderlin. All rights reserved. + * Copyright © 2007-2015, Hoa community. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -34,31 +34,18 @@ * POSSIBILITY OF SUCH DAMAGE. */ -namespace { - -from('Hoa') - -/** - * \Hoa\Praspel\Model\Declaration - */ --> import('Praspel.Model.Declaration'); - -} - -namespace Hoa\Praspel\Model { +namespace Hoa\Praspel\Model; /** * Class \Hoa\Praspel\Model\Invariant. * * Represent the @invariant clause. * - * @author Ivan Enderlin <ivan.enderlin@hoa-project.net> - * @copyright Copyright © 2007-2015 Ivan Enderlin. + * @copyright Copyright © 2007-2015 Hoa community * @license New BSD License */ - -class Invariant extends Declaration { - +class Invariant extends Declaration +{ /** * Name. * @@ -66,5 +53,3 @@ class Invariant extends Declaration { */ const NAME = 'invariant'; } - -} |