Skip to content

Commit

Permalink
refactor name, support array as input
Browse files Browse the repository at this point in the history
  • Loading branch information
pxpm committed Jun 23, 2020
1 parent 74d825d commit f9dbbeb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 36 deletions.
4 changes: 2 additions & 2 deletions src/app/Library/CrudPanel/CrudPanel.php
Original file line number Diff line number Diff line change
Expand Up @@ -477,10 +477,10 @@ private function getRelatedEntries($model, $relationString)
* - CRUD::group(CRUD::field('price')->type('number'), CRUD::field('title')->type('text'))->tab('both_on_same_tab');
*
* @param mixed fluent syntax objects.
* @return ObjectGroup
* @return CrudObjectGroup
*/
public function group(...$objects)
{
return new ObjectGroup(...$objects);
return new CrudObjectGroup(...$objects);
}
}
34 changes: 0 additions & 34 deletions src/app/Library/CrudPanel/ObjectGroup.php

This file was deleted.

0 comments on commit f9dbbeb

Please sign in to comment.