Skip to content
This repository has been archived by the owner on Dec 27, 2023. It is now read-only.

Commit

Permalink
Removed retval prefix for cleaner outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrés Correa Casablanca committed May 20, 2017
1 parent 1d816d5 commit 4df6a5a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Handlers/ShellMessagesHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
use Litipk\JupyterPHP\Actions\KernelInfoAction;
use Litipk\JupyterPHP\Actions\ShutdownAction;
use Litipk\JupyterPHP\JupyterBroker;
use Litipk\JupyterPHP\Shell;

use Litipk\JupyterPHP\KernelOutput;
use Monolog\Logger;
use Psy\Shell;
use React\ZMQ\SocketWrapper;

final class ShellMessagesHandler
Expand Down
2 changes: 0 additions & 2 deletions src/KernelCore.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

namespace Litipk\JupyterPHP;


use Litipk\JupyterPHP\Handlers\HbErrorHandler;
use Litipk\JupyterPHP\Handlers\HbMessagesHandler;
use Litipk\JupyterPHP\Handlers\IOPubMessagesHandler;
Expand All @@ -23,7 +22,6 @@
use React\ZMQ\Context as ReactZmqContext;
use React\ZMQ\SocketWrapper;


/**
* Class KernelCore (no pun intended)
*/
Expand Down
19 changes: 19 additions & 0 deletions src/Shell.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php

/*
* This file is part of Jupyter-PHP.
*
* (c) 2015-2017 Litipk
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Litipk\JupyterPHP;

use Psy\Shell as PsyShell;

class Shell extends PsyShell
{
const RETVAL = '';
}

0 comments on commit 4df6a5a

Please sign in to comment.