Skip to content

Commit

Permalink
Unparent
Browse files Browse the repository at this point in the history
  • Loading branch information
thekid committed Apr 5, 2020
1 parent 7756d33 commit 2101071
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/php/unittest/web/Field.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*
* @see xp://unittest.web.Form#getFields
*/
abstract class Field extends \lang\Object {
abstract class Field {
protected
$form = null,
$node = null;
Expand Down
2 changes: 1 addition & 1 deletion src/main/php/unittest/web/Form.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @see xp://unittest.web.WebTestCase#getForm
*/
class Form extends \lang\Object {
class Form {
protected
$test = null,
$node = null,
Expand Down
4 changes: 3 additions & 1 deletion src/main/php/unittest/web/InputStream.class.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<?php namespace unittest\web;

class InputStream extends \lang\Object implements \io\streams\InputStream {
use io\streams\InputStream as Input;

class InputStream implements Input {
const META_TAG = '<meta http-equiv="content-type" content="text/html; charset=%s">';

private $in, $head;
Expand Down

0 comments on commit 2101071

Please sign in to comment.