Skip to content

Commit f54a89a

Browse files
committed
Spring clean.
Signed-off-by: Ben Corlett <bencorlett@me.com>
1 parent a1feda5 commit f54a89a

10 files changed

+12
-323
lines changed

composer.json

+2-14
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,7 @@
3232
],
3333
"require": {
3434
"php": ">=5.3.0",
35-
36-
"illuminate/database": "4.0.*",
37-
"illuminate/filesystem": "4.0.*",
38-
39-
"symfony/finder": "2.3.*",
40-
41-
"dflydev/markdown": "v1.0.2",
42-
43-
"daylerees/kurenai": "1.0.*"
44-
},
45-
"suggest": {
46-
"illuminate/database": "We provide an Eloquent book source.",
47-
"dflydev/markdown": "We provide a markdown parser."
35+
"dflydev/markdown": "*"
4836
},
4937
"require-dev": {
5038
"mockery/mockery": "0.7.2"
@@ -62,7 +50,7 @@
6250
"component": "package",
6351
"frameworks": ["Laravel 4"],
6452
"branch-alias": {
65-
"dev-master": "1.1-dev"
53+
"dev-master": "1.0-dev"
6654
}
6755
},
6856
"minimum-stability": "dev"

src/Cartalyst/Interpret/Content/Content.php

+10
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,14 @@ public function __construct($value)
3838
$this->value = $value;
3939
}
4040

41+
/**
42+
* Returns the content's value.
43+
*
44+
* @return string
45+
*/
46+
public function getValue()
47+
{
48+
return $this->value;
49+
}
50+
4151
}

src/Cartalyst/Interpret/Content/MarkdownContent.php

-10
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,6 @@
2222

2323
class MarkdownContent extends Content implements ContentInterface {
2424

25-
/**
26-
* Returns the content's value.
27-
*
28-
* @return string
29-
*/
30-
public function getValue()
31-
{
32-
return $this->value;
33-
}
34-
3525
/**
3626
* Returns the HTML equivilent of the content.
3727
*

tests/.gitkeep

Whitespace-only changes.

tests/EloquentLocatorTest.php

-74
This file was deleted.

tests/FilesystemLocatorTest.php

-68
This file was deleted.

tests/HtmlContentTest.php

-45
This file was deleted.

tests/MarkdownContentTest.php

-61
This file was deleted.

tests/StringContentTest.php

-45
This file was deleted.

tests/stubs/filesystem/foo.md

-6
This file was deleted.

0 commit comments

Comments
 (0)