Skip to content

Commit

Permalink
refactor: improve return type-hints for static analysis (#1102)
Browse files Browse the repository at this point in the history
  • Loading branch information
deguif authored Dec 14, 2023
1 parent 4b4ee6f commit 36d060f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Grid/GridBuilderInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ interface GridBuilderInterface
* @param string|Column $type
* @param array $options
*
* @return GridBuilderInterface
* @return static
*/
public function add($name, $type, array $options = []);

Expand All @@ -36,7 +36,7 @@ public function get($name);
*
* @param string $name The name of column
*
* @return GridBuilderInterface
* @return static
*/
public function remove($name);

Expand Down

0 comments on commit 36d060f

Please sign in to comment.