plugins/Test.php

21 lines
330 B
PHP
Raw Normal View History

<?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";
}
}