Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
e80876cc
Commit
e80876cc
authored
Oct 09, 2007
by
Jonathan.Wage
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fleshed out cli system and added one sample task.
parent
b9301162
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
103 additions
and
3 deletions
+103
-3
Cli.php
lib/Doctrine/Cli.php
+21
-1
Exception.php
lib/Doctrine/Cli/Exception.php
+34
-0
Task.php
lib/Doctrine/Cli/Task.php
+4
-2
Test.php
lib/Doctrine/Cli/Task/Test.php
+44
-0
No files found.
lib/Doctrine/Cli.php
View file @
e80876cc
...
@@ -31,4 +31,24 @@
...
@@ -31,4 +31,24 @@
* @author Jonathan H. Wage <jwage@mac.com>
* @author Jonathan H. Wage <jwage@mac.com>
*/
*/
class
Doctrine_Cli
class
Doctrine_Cli
{
}
{
\ No newline at end of file
public
function
run
(
$args
)
{
if
(
!
isset
(
$args
[
1
]))
{
throw
new
Doctrine_Cli_Exception
(
'You must specify the task to execute'
);
}
unset
(
$args
[
0
]);
$taskName
=
$args
[
1
];
unset
(
$args
[
1
]);
$taskClass
=
'Doctrine_Cli_Task_'
.
Doctrine
::
classify
(
$taskName
);
if
(
class_exists
(
$taskClass
))
{
$taskInstance
=
new
$taskClass
();
$taskInstance
->
execute
(
$args
);
}
else
{
throw
new
Doctrine_Cli_Exception
(
'Cli task could not be found: '
.
$taskClass
);
}
}
}
\ No newline at end of file
lib/Doctrine/Cli/Exception.php
0 → 100644
View file @
e80876cc
<?php
/*
* $Id: Exception.php 2761 2007-10-07 23:42:29Z zYne $
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
/**
* Doctrine_Cli_Exception
*
* @package Doctrine
* @subpackage Cli
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision: 2761 $
* @author Jonathan H. Wage <jwage@mac.com>
*/
class
Doctrine_Cli_Exception
extends
Doctrine_Exception
{
}
\ No newline at end of file
lib/Doctrine/Cli/Task.php
View file @
e80876cc
...
@@ -30,5 +30,7 @@
...
@@ -30,5 +30,7 @@
* @version $Revision: 2761 $
* @version $Revision: 2761 $
* @author Jonathan H. Wage <jwage@mac.com>
* @author Jonathan H. Wage <jwage@mac.com>
*/
*/
class
Doctrine_Cli_Task
abstract
class
Doctrine_Cli_Task
{
}
{
\ No newline at end of file
abstract
function
execute
(
$args
);
}
\ No newline at end of file
lib/Doctrine/Cli/Task/Test.php
0 → 100644
View file @
e80876cc
<?php
/*
* $Id: Task.php 2761 2007-10-07 23:42:29Z zYne $
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information, see
* <http://www.phpdoctrine.com>.
*/
/**
* Doctrine_Cli_Test_Task
*
* @package Doctrine
* @subpackage Cli
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @link www.phpdoctrine.com
* @since 1.0
* @version $Revision: 2761 $
* @author Jonathan H. Wage <jwage@mac.com>
*/
class
Doctrine_Cli_Task_Test
{
public
function
execute
(
$args
)
{
$count
=
0
;
foreach
(
$args
as
$arg
)
{
$count
++
;
echo
$count
.
".) "
.
$arg
.
"
\n
"
;
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment