|
Revision 23810, 0.7 kB
(checked in by Kris.Wallsmith, 4 years ago)
|
[1.3] set svn:eol-style property to native and svn:keywords property to Id on all .php files
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
class lime_symfony extends lime_harness |
|---|
| 12 |
{ |
|---|
| 13 |
protected function get_relative_file($file) |
|---|
| 14 |
{ |
|---|
| 15 |
$file = str_replace(DIRECTORY_SEPARATOR, '/', str_replace(array( |
|---|
| 16 |
realpath($this->base_dir).DIRECTORY_SEPARATOR, |
|---|
| 17 |
realpath($this->base_dir.'/../lib/plugins').DIRECTORY_SEPARATOR, |
|---|
| 18 |
$this->extension, |
|---|
| 19 |
), '', $file)); |
|---|
| 20 |
|
|---|
| 21 |
return preg_replace('#^(.*?)Plugin/test/(unit|functional)/#', '[$1] $2/', $file); |
|---|
| 22 |
} |
|---|
| 23 |
} |
|---|
| 24 |
|
|---|