21 lines
330 B
PHP
21 lines
330 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
class Test
|
||
|
|
{
|
||
|
|
public function originalMethod()
|
||
|
|
{
|
||
|
|
// Some code before the selection
|
||
|
|
echo "Before";
|
||
|
|
|
||
|
|
// Start of selection
|
||
|
|
$a = 1;
|
||
|
|
$b = 2;
|
||
|
|
$c = $a + $b;
|
||
|
|
echo $c;
|
||
|
|
// End of selection
|
||
|
|
|
||
|
|
// Some code after the selection
|
||
|
|
echo "After";
|
||
|
|
}
|
||
|
|
}
|