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

Commit

Permalink
Fixes binary namespaces
Browse files Browse the repository at this point in the history
Copy-and-paste error led to all binary scripts having the same
namespace; corrected.

Additionally, updated the file-level docblocks of each to point to the
correct repository.
  • Loading branch information
weierophinney committed Dec 6, 2016
1 parent 4942b05 commit 23d38c2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions bin/expressive-migrate-original-messages
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/usr/bin/env php
<?php // @codingStandardsIgnoreFile
/**
* Script for migrating configuration-driven pipelines/routes to programmatic usage.
* Script for updating calls to Stragitiligy PSR-7 decorators to usage of request attributes.
*
* @see https://github.com/zendframework/zend-expressive for the canonical source repository
* @see https://github.com/zendframework/zend-expressive-tooling for the canonical source repository
* @copyright Copyright (c) 2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-expressive/blob/master/LICENSE.md New BSD License
* @license https://github.com/zendframework/zend-expressive-tooling/blob/master/LICENSE.md New BSD License
*/

namespace Zend\Expressive\Tooling\MigrateOriginalMessageCalls;
Expand Down
6 changes: 3 additions & 3 deletions bin/expressive-pipeline-from-config
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
/**
* Script for migrating configuration-driven pipelines/routes to programmatic usage.
*
* @see https://github.com/zendframework/zend-expressive for the canonical source repository
* @see https://github.com/zendframework/zend-expressive-tooling for the canonical source repository
* @copyright Copyright (c) 2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-expressive/blob/master/LICENSE.md New BSD License
* @license https://github.com/zendframework/zend-expressive-tooling/blob/master/LICENSE.md New BSD License
*/

namespace Zend\Expressive\Tooling\MigrateOriginalMessageCalls;
namespace Zend\Expressive\Tooling\GenerateProgrammaticPipelineFromConfig;

use Zend\Stdlib\ConsoleHelper;

Expand Down
8 changes: 4 additions & 4 deletions bin/expressive-scan-for-error-middleware
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
#!/usr/bin/env php
<?php // @codingStandardsIgnoreFile
/**
* Script for migrating configuration-driven pipelines/routes to programmatic usage.
* Script that scans for error middleware implementations and invocations
*
* @see https://github.com/zendframework/zend-expressive for the canonical source repository
* @see https://github.com/zendframework/zend-expressive-tooling for the canonical source repository
* @copyright Copyright (c) 2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license https://github.com/zendframework/zend-expressive/blob/master/LICENSE.md New BSD License
* @license https://github.com/zendframework/zend-expressive-tooling/blob/master/LICENSE.md New BSD License
*/

namespace Zend\Expressive\Tooling\MigrateOriginalMessageCalls;
namespace Zend\Expressive\Tooling\ScanForErrorMiddleware;

use Zend\Stdlib\ConsoleHelper;

Expand Down

0 comments on commit 23d38c2

Please sign in to comment.