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

Commit

Permalink
Merge branch 'feature/di' into zf2/master
Browse files Browse the repository at this point in the history
Conflicts:
	tests/TestConfiguration.php.dist
  • Loading branch information
weierophinney committed Jun 13, 2011
2 parents 52cf404 + 52ccee8 commit df39826
Show file tree
Hide file tree
Showing 122 changed files with 9,724 additions and 8 deletions.
511 changes: 511 additions & 0 deletions documentation/manual/en/tutorials/quickstart-di.xml

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions library/Zend/Code/Exception.php
@@ -0,0 +1,7 @@
<?php

namespace Zend\Code;

interface Exception
{
}
11 changes: 11 additions & 0 deletions library/Zend/Code/Exception/InvalidArgumentException.php
@@ -0,0 +1,11 @@
<?php

namespace Zend\Code\Exception;

use Zend\Code\Exception;

class InvalidArgumentException
extends \InvalidArgumentException
implements Exception
{
}
9 changes: 9 additions & 0 deletions library/Zend/Code/Exception/RuntimeException.php
@@ -0,0 +1,9 @@
<?php

namespace Zend\Code\Exception;

use Zend\Code\Exception;

class RuntimeException extends \RuntimeException implements Exception
{
}
9 changes: 9 additions & 0 deletions library/Zend/Code/Scanner.php
@@ -0,0 +1,9 @@
<?php

namespace Zend\Code;

interface Scanner
{
public static function export();
public function __toString();
}

0 comments on commit df39826

Please sign in to comment.