Skip to content
This repository has been archived by the owner on Jan 21, 2020. It is now read-only.

Commit

Permalink
Ensured all PHP files have license and copyright annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Oct 3, 2013
1 parent edc66f2 commit b5a5520
Show file tree
Hide file tree
Showing 10 changed files with 37 additions and 17 deletions.
4 changes: 4 additions & 0 deletions config/application.config.php
@@ -1,4 +1,8 @@
<?php
/**
* @license http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
* @copyright Copyright (c) 2013 Zend Technologies USA Inc. (http://www.zend.com)
*/

return array(
// This should be an array of module namespaces used in the application.
Expand Down
5 changes: 5 additions & 0 deletions config/autoload/global-development.php
@@ -1,2 +1,7 @@
<?php
/**
* @license http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
* @copyright Copyright (c) 2013 Zend Technologies USA Inc. (http://www.zend.com)
*/

return array();
5 changes: 5 additions & 0 deletions config/autoload/user.global.php
@@ -1,4 +1,9 @@
<?php
/**
* @license http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
* @copyright Copyright (c) 2013 Zend Technologies USA Inc. (http://www.zend.com)
*/

/**
* Global Configuration Override
*
Expand Down
6 changes: 5 additions & 1 deletion config/autoload/zfconfig.global.php
@@ -1,3 +1,7 @@
<?php
/**
* @license http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
* @copyright Copyright (c) 2013 Zend Technologies USA Inc. (http://www.zend.com)
*/

return array();
return array();
5 changes: 5 additions & 0 deletions config/development.config.php.dist
@@ -1,4 +1,9 @@
<?php
/**
* @license http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
* @copyright Copyright (c) 2013 Zend Technologies USA Inc. (http://www.zend.com)
*/

return array(
// Development time modules
'modules' => array(
Expand Down
7 changes: 2 additions & 5 deletions module/Application/Module.php
@@ -1,10 +1,7 @@
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @license http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
* @copyright Copyright (c) 2013 Zend Technologies USA Inc. (http://www.zend.com)
*/

namespace Application;
Expand Down
7 changes: 2 additions & 5 deletions module/Application/config/module.config.php
@@ -1,10 +1,7 @@
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @license http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
* @copyright Copyright (c) 2013 Zend Technologies USA Inc. (http://www.zend.com)
*/

return array(
Expand Down
@@ -1,6 +1,7 @@
<?php
/**
* @license http://framework.zend.com/license/new-bsd New BSD License
* @license http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
* @copyright Copyright (c) 2013 Zend Technologies USA Inc. (http://www.zend.com)
*/

namespace Application\Controller;
Expand Down
@@ -1,10 +1,7 @@
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @license http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
* @copyright Copyright (c) 2013 Zend Technologies USA Inc. (http://www.zend.com)
*/

namespace Application\Controller;
Expand Down
5 changes: 5 additions & 0 deletions public/index.php
@@ -1,4 +1,9 @@
<?php
/**
* @license http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
* @copyright Copyright (c) 2013 Zend Technologies USA Inc. (http://www.zend.com)
*/

/**
* This makes our life easier when dealing with paths. Everything is relative
* to the application root now.
Expand Down

0 comments on commit b5a5520

Please sign in to comment.