Index: lib/plugin/sfPearRest13.class.php
===================================================================
--- lib/plugin/sfPearRest13.class.php	(wersja 0)
+++ lib/plugin/sfPearRest13.class.php	(wersja 3886)
@@ -0,0 +1,32 @@
+<?php
+
+/*
+ * This file is part of the symfony package.
+ * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
+ * 
+ * For the full copyright and license information, please view the LICENSE
+ * file that was distributed with this source code.
+ */
+
+require_once 'PEAR/REST/13.php';
+
+/**
+ * sfPearRest10 interacts with a PEAR channel that supports REST 1.1.
+ *
+ * @package    symfony
+ * @subpackage plugin
+ * @author     Fabien Potencier <fabien.potencier@symfony-project.com>
+ * @version    SVN: $Id: sfPearRest11.class.php 3808 2011-03-28 15:34:40Z atulodziecki $
+ */
+class sfPearRest13 extends PEAR_REST_13
+{
+  /**
+   * @see PEAR_REST_13
+   */
+  public function __construct($config, $options = array())
+  {
+    $class = isset($options['base_class']) ? $options['base_class'] : 'sfPearRest';
+
+    $this->_rest = new $class($config, $options);
+  }
+}
Index: lib/autoload/sfCoreAutoload.class.php
===================================================================
--- lib/autoload/sfCoreAutoload.class.php	(wersja 3827)
+++ lib/autoload/sfCoreAutoload.class.php	(wersja 3886)
@@ -341,6 +341,7 @@
     'sfpearrest' => 'plugin/sfPearRest.class.php',
     'sfpearrest10' => 'plugin/sfPearRest10.class.php',
     'sfpearrest11' => 'plugin/sfPearRest11.class.php',
+    'sfpearrest13' => 'plugin/sfPearRest13.class.php',
     'sfpearrestplugin' => 'plugin/sfPearRestPlugin.class.php',
     'sfplugindependencyexception' => 'plugin/sfPluginDependencyException.class.php',
     'sfpluginexception' => 'plugin/sfPluginException.class.php',
