We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5b3111 commit 1fcfa2dCopy full SHA for 1fcfa2d
Resources/doc/apiSupport.md
@@ -22,7 +22,6 @@ Konfiguracja pochodzi z [Przykład wykorzystania](baseExample.md) zmieni się ty
22
namespace AppBundle\Controller;
23
24
use AppBundle\Grid\ExampleGrid;
25
-use AppBundle\Grid\ExampleAnotherGrid;
26
use Makoso\DatagridBundle\Grid\Grid;
27
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
28
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
@@ -34,10 +33,10 @@ class DefaultController extends Controller
34
33
*/
35
public function indexAction(Grid $grid)
36
{
37
- return $grid->configure(new VirtualEntityGrid())->getJsonResponse();
+ return $grid->configure(new ExampleGrid())->getJsonResponse();
38
}
39
40
41
```
42
43
-Gotowe!
+Gotowe!
0 commit comments