Skip to content

Commit

Permalink
Added deprecation notices about symfony extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
chives committed Jun 10, 2015
1 parent a064770 commit d7968dd
Show file tree
Hide file tree
Showing 9 changed files with 34 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ interface ColumnTypeExtensionInterface
/**
* @param \FSi\Component\DataGrid\DataGridInterface $dataGrid
* @return mixed
*
* @deprecated This method is deprecated since 1.2 because it is never called
*/
public function setDataGrid(DataGridInterface $dataGrid);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\OptionsResolver\OptionsResolver;

/**
* @deprecated This class is deprecated since version 1.2. Please use fsi/datagrid-bundle and its
* FSi\Bundle\DataGridBundle\DataGrid\Extension\Symfony\ColumnType\Action
*/
class Action extends ColumnAbstractType
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
use FSi\Component\DataGrid\Column\ColumnAbstractTypeExtension;
use Symfony\Component\Routing\RouterInterface;

/**
* @deprecated This class is deprecated since version 1.2. Please use fsi/datagrid-bundle and its
* FSi\Bundle\DataGridBundle\DataGrid\Extension\Symfony\ColumnTypeExtension\ActionColumnExtension
*/
class ActionColumnExtension extends ColumnAbstractTypeExtension
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
use Symfony\Component\Form\FormFactoryInterface;
use Symfony\Component\Form\FormInterface;

/**
* @deprecated This class is deprecated since version 1.2. Please use fsi/datagrid-bundle and its
* FSi\Bundle\DataGridBundle\DataGrid\Extension\Symfony\ColumnTypeExtension\FormExtension
*/
class FormExtension extends ColumnAbstractTypeExtension
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;

/**
* @deprecated This class is deprecated since version 1.2. Please use fsi/datagrid-bundle and its
* FSi\Bundle\DataGridBundle\Form\Type\RowType
*/
class RowType extends AbstractType
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
use FSi\Component\DataGrid\DataGridAbstractExtension;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
* @deprecated This class is deprecated since version 1.2. Please use fsi/datagrid-bundle and its
* FSi\Bundle\DataGridBundle\DataGrid\Extension\Symfony\DependencyInjectionExtension
*/
class DependencyInjectionExtension extends DataGridAbstractExtension
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;

/**
* @deprecated This class is deprecated since version 1.2. Please use fsi/datagrid-bundle and its
* FSi\Bundle\DataGridBundle\DataGrid\Extension\Symfony\EventSubscriber\BindRequest
*/
class BindRequest implements EventSubscriberInterface
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
use FSi\Component\DataGrid\DataGridAbstractExtension;
use Symfony\Component\Form\FormFactoryInterface;

/**
* @deprecated This class is deprecated since version 1.2. Please use fsi/datagrid-bundle and its
* FSi\Bundle\DataGridBundle\DataGrid\Extension\Symfony\FormExtension
*/
class FormExtension extends DataGridAbstractExtension
{
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
use FSi\Component\DataGrid\Extension\Symfony\ColumnType;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
* @deprecated This class is deprecated since version 1.2. Please use fsi/datagrid-bundle and its
* FSi\Bundle\DataGridBundle\DataGrid\Extension\Symfony\RouterExtension
*/
class SymfonyExtension extends DataGridAbstractExtension
{
/**
Expand Down

0 comments on commit d7968dd

Please sign in to comment.