Skip to content

Commit c542454

Browse files
committed
Merge pull request FriendsOfSymfony1#50 from JLepeltier/patch-1
Update sfTask.class.php
2 parents 706d78f + be83fdc commit c542454

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

lib/task/sfTask.class.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,10 @@ public function getBriefDescription()
304304
*/
305305
public function getDetailedDescription()
306306
{
307-
return preg_replace('/\[(.+?)\|(\w+)\]/se', '$this->formatter->format("$1", "$2")', $this->detailedDescription);
307+
$formatter = $this->getFormatter();
308+
return preg_replace_callback('/\[(.+?)\|(\w+)\]/s', function ($match) use ($formatter) {
309+
return $formatter->format($match['1'], $match['2']);
310+
}, $this->detailedDescription);
308311
}
309312

310313
/**

test/unit/task/sfTaskTest.php

+17-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010
require_once dirname(__FILE__).'/../../bootstrap/unit.php';
1111

12-
$t = new lime_test(15);
12+
$t = new lime_test(16);
1313

1414
abstract class BaseTestTask extends sfTask
1515
{
@@ -114,3 +114,19 @@ protected function configure()
114114

115115
$task->run(array(), array('array' => 'one'));
116116
$t->is_deeply($task->lastOptions, array('none' => false, 'required' => null, 'optional' => null, 'array' => array('one')), '->run() accepts an associative array of options with a scalar array option value');
117+
118+
// ->getDetailedDescription()
119+
$t->diag('->getDetailedDescription()');
120+
121+
class DetailedDescriptionTestTask extends BaseTestTask
122+
{
123+
protected function configure()
124+
{
125+
$this->detailedDescription = <<<EOF
126+
The [detailedDescription|INFO] formats special string like [...|COMMENT] or [--xml|COMMENT]
127+
EOF;
128+
}
129+
}
130+
131+
$task = new DetailedDescriptionTestTask();
132+
$t->is($task->getDetailedDescription(), "The detailedDescription formats special string like ... or --xml", "->getDetailedDescription() formats special string");

0 commit comments

Comments
 (0)