diff options
Diffstat (limited to 'Model/Ensures.php')
-rw-r--r-- | Model/Ensures.php | 25 |
1 files changed, 5 insertions, 20 deletions
diff --git a/Model/Ensures.php b/Model/Ensures.php index 0a08c4e..57c65e4 100644 --- a/Model/Ensures.php +++ b/Model/Ensures.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\Ensures. * * Represent the @ensures 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 Ensures extends Declaration { - +class Ensures extends Declaration +{ /** * Name. * @@ -66,5 +53,3 @@ class Ensures extends Declaration { */ const NAME = 'ensures'; } - -} |