Move files to psr-2 standard locations

This commit is contained in:
Damian Mooyman 2016-10-14 12:57:33 +13:00
parent 8ab382ed78
commit 789cb5b465
481 changed files with 19 additions and 22 deletions

View File

@ -1 +0,0 @@
.a {color: #f00;}

View File

@ -1 +0,0 @@
.b {color: #0ff;}

View File

@ -1 +0,0 @@
.c {color: #0ff;}

View File

@ -1 +0,0 @@
alert('a');

View File

@ -1 +0,0 @@
alert('b');

View File

@ -1 +0,0 @@
alert('c');

View File

Before

Width:  |  Height:  |  Size: 132 B

After

Width:  |  Height:  |  Size: 132 B

View File

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

View File

Before

Width:  |  Height:  |  Size: 240 B

After

Width:  |  Height:  |  Size: 240 B

View File

Before

Width:  |  Height:  |  Size: 253 B

After

Width:  |  Height:  |  Size: 253 B

View File

Before

Width:  |  Height:  |  Size: 301 B

After

Width:  |  Height:  |  Size: 301 B

View File

Before

Width:  |  Height:  |  Size: 331 B

After

Width:  |  Height:  |  Size: 331 B

View File

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -21,7 +21,10 @@ class PhpSyntaxTest extends SapphireTest {
$returnCode = 0;
$output = array();
exec("which find && which grep && which php", $output, $returnCode);
if($returnCode != 0) return;
if($returnCode != 0) {
$this->markTestSkipped("Only works on *nix based systems");
return;
}
$settingTests = array('short_open_tag=Off','short_open_tag=On -d asp_tags=On');

View File

Can't render this file because it contains an unexpected character in line 1 and column 51.

View File

Can't render this file because it contains an unexpected character in line 4 and column 45.

View File

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

View File

Before

Width:  |  Height:  |  Size: 148 KiB

After

Width:  |  Height:  |  Size: 148 KiB

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

View File

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

View File

@ -0,0 +1,15 @@
<?php
namespace TestNamespace;
use SilverStripe\Dev\TestOnly;
use SilverStripe\ORM\DataObject;
use SilverStripe\Control\Controller;
class SSViewerTestModel extends DataObject implements TestOnly {
}
class SSViewerTestModel_Controller extends Controller implements TestOnly {
}

View File

@ -1,15 +0,0 @@
<?php
namespace TestNamespace;
use SilverStripe\ORM\DataObject;
use SilverStripe\Control\Controller;
class SSViewerTestModel extends DataObject {
}
class SSViewerTestModel_Controller extends Controller {
}